facult 2.13.5 → 2.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/README.md +31 -10
  2. package/assets/packs/facult-operating-model/AGENTS.global.md +41 -41
  3. package/assets/packs/facult-operating-model/agents/evolution-planner/agent.toml +3 -0
  4. package/assets/packs/facult-operating-model/agents/integration-auditor/agent.toml +8 -1
  5. package/assets/packs/facult-operating-model/agents/scope-promoter/agent.toml +8 -1
  6. package/assets/packs/facult-operating-model/agents/writeback-curator/agent.toml +2 -0
  7. package/assets/packs/facult-operating-model/instructions/CAPABILITY_COMPOSITION.md +4 -4
  8. package/assets/packs/facult-operating-model/instructions/EVOLUTION.md +3 -3
  9. package/assets/packs/facult-operating-model/instructions/INTEGRATION.md +44 -0
  10. package/assets/packs/facult-operating-model/instructions/LEARNING_AND_WRITEBACK.md +1 -1
  11. package/assets/packs/facult-operating-model/instructions/PROJECT_CAPABILITY.md +35 -0
  12. package/assets/packs/facult-operating-model/instructions/WORK_UNITS.md +48 -0
  13. package/assets/packs/facult-operating-model/skills/capability-evolution/SKILL.md +25 -6
  14. package/assets/packs/facult-operating-model/skills/project-operating-layer-design/SKILL.md +33 -0
  15. package/assets/packs/facult-operating-model/snippets/global/baseline.md +3 -0
  16. package/assets/packs/facult-operating-model/snippets/global/core/feedback-loops.md +11 -0
  17. package/assets/packs/facult-operating-model/snippets/global/core/verification.md +6 -0
  18. package/assets/packs/facult-operating-model/snippets/global/core/work-units.md +7 -0
  19. package/assets/packs/facult-operating-model/snippets/global/core/writeback.md +9 -0
  20. package/docs/README.md +3 -0
  21. package/docs/assets/fclt-capability-loop.png +0 -0
  22. package/docs/built-in-pack.md +13 -0
  23. package/docs/composable-capability.md +21 -22
  24. package/docs/concepts.md +4 -1
  25. package/docs/pack-upgrades.md +67 -0
  26. package/docs/reference.md +10 -2
  27. package/docs/work-units.md +96 -0
  28. package/package.json +1 -1
  29. package/src/agents.ts +17 -0
  30. package/src/builtin-assets.ts +2 -1
  31. package/src/doctor.ts +238 -7
  32. package/src/global-docs.ts +10 -3
  33. package/src/remote.ts +149 -14
  34. package/src/snippets-cli.ts +2 -2
  35. package/src/snippets.ts +1 -1
package/src/snippets.ts CHANGED
@@ -202,7 +202,7 @@ export function formatSnippetInjection(snippet: string): string {
202
202
  }
203
203
 
204
204
  export interface SnippetResolution {
205
- /** The marker name requested (e.g. "codingstyle", "global/codingstyle", "myproj/context"). */
205
+ /** The marker name requested (e.g. "qualitychecklist", "global/qualitychecklist", "myproj/context"). */
206
206
  marker: string;
207
207
  /** The snippet file path used for injection. */
208
208
  path: string;