Files
a0_software_orchestrator/help/library/query.md
T
Software Orchestrator 5769c1cd22 Initial commit: a0_software_orchestrator v1.0
- 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
2026-06-16 22:13:06 +00:00

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
search

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

  1. Formulate query keywords: technology, problem type, domain, project type
  2. Call the library-query API:
GET /api/plugins/a0_software_orchestrator/library_search?q=<keywords>
  1. Review top results by relevance
  2. For each relevant pattern, read the full content via:
GET /api/plugins/a0_software_orchestrator/library_get?id=<pattern_id>
  1. 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