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.
- package/README.md +31 -10
- package/assets/packs/facult-operating-model/AGENTS.global.md +41 -41
- package/assets/packs/facult-operating-model/agents/evolution-planner/agent.toml +3 -0
- package/assets/packs/facult-operating-model/agents/integration-auditor/agent.toml +8 -1
- package/assets/packs/facult-operating-model/agents/scope-promoter/agent.toml +8 -1
- package/assets/packs/facult-operating-model/agents/writeback-curator/agent.toml +2 -0
- package/assets/packs/facult-operating-model/instructions/CAPABILITY_COMPOSITION.md +4 -4
- package/assets/packs/facult-operating-model/instructions/EVOLUTION.md +3 -3
- package/assets/packs/facult-operating-model/instructions/INTEGRATION.md +44 -0
- package/assets/packs/facult-operating-model/instructions/LEARNING_AND_WRITEBACK.md +1 -1
- package/assets/packs/facult-operating-model/instructions/PROJECT_CAPABILITY.md +35 -0
- package/assets/packs/facult-operating-model/instructions/WORK_UNITS.md +48 -0
- package/assets/packs/facult-operating-model/skills/capability-evolution/SKILL.md +25 -6
- package/assets/packs/facult-operating-model/skills/project-operating-layer-design/SKILL.md +33 -0
- package/assets/packs/facult-operating-model/snippets/global/baseline.md +3 -0
- package/assets/packs/facult-operating-model/snippets/global/core/feedback-loops.md +11 -0
- package/assets/packs/facult-operating-model/snippets/global/core/verification.md +6 -0
- package/assets/packs/facult-operating-model/snippets/global/core/work-units.md +7 -0
- package/assets/packs/facult-operating-model/snippets/global/core/writeback.md +9 -0
- package/docs/README.md +3 -0
- package/docs/assets/fclt-capability-loop.png +0 -0
- package/docs/built-in-pack.md +13 -0
- package/docs/composable-capability.md +21 -22
- package/docs/concepts.md +4 -1
- package/docs/pack-upgrades.md +67 -0
- package/docs/reference.md +10 -2
- package/docs/work-units.md +96 -0
- package/package.json +1 -1
- package/src/agents.ts +17 -0
- package/src/builtin-assets.ts +2 -1
- package/src/doctor.ts +238 -7
- package/src/global-docs.ts +10 -3
- package/src/remote.ts +149 -14
- package/src/snippets-cli.ts +2 -2
- 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. "
|
|
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;
|