5769c1cd22
- Auto-Registration-Bug behoben (register_project/get_project_id/resolve_project Trennung) - 25 Tests gruen (Pytest) - block_compactor-Tool refactored (Option B: Soft-Check statt Hard-Block) - 4 Restbaustellen gefixt - DB-Schema: plugin_settings-Tabelle hinzugefuegt - 3 Schattenprojekte aus DB geloescht - Plan v3 + Refactor-Plan + Worklog dokumentiert
1.1 KiB
1.1 KiB
name, description, tags
| name | description | tags | |||
|---|---|---|---|---|---|
| library-query | Query the patterns library for relevant patterns, best practices, and known errors. |
|
Library Query
Purpose
Find relevant patterns from the self-learning library before starting work, to avoid reinventing solutions and to apply known best practices.
When to Use
- At the start of any new project or task
- When designing architecture for a new feature
- When debugging an error (find prior solutions)
- When planning a phase
When Not to Use
- For trivial questions (just ask)
- For project-specific state (read the project files)
Procedure
- Formulate query keywords: technology, problem type, domain, project type
- Call the library-query API:
GET /api/plugins/a0_software_orchestrator/library_search?q=<keywords>
- Review top results by relevance
- For each relevant pattern, read the full content via:
GET /api/plugins/a0_software_orchestrator/library_get?id=<pattern_id>
- Apply the pattern to the current work, citing the pattern_id
See Also
- Help:
library/extract.md - API:
/api/plugins/a0_software_orchestrator/library_search