@herjarsa/omo-meta-governor 0.34.2 → 0.35.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 +10 -0
- package/dist/config.d.ts +3 -0
- package/dist/health.d.ts +9 -0
- package/dist/index.js +75 -74
- package/dist/index.js.map +14 -10
- package/dist/lib.js +89 -88
- package/dist/lib.js.map +15 -11
- package/dist/mcp-server.js +82 -79
- package/dist/mcp-server.js.map +13 -11
- package/dist/metrics.d.ts +1 -1
- package/dist/skill-hub-tools.d.ts +39 -0
- package/dist/skills/chore.tar.gz +0 -0
- package/dist/skills-bootstrap.d.ts +22 -0
- package/dist/skills-bundled.d.ts +7 -0
- package/dist/skills-fs-watcher.d.ts +19 -0
- package/dist/skills-fs.d.ts +20 -0
- package/dist/skills-materialize.d.ts +18 -0
- package/dist/skills-resolver.d.ts +45 -0
- package/dist/skills-tier3-reminder.d.ts +16 -0
- package/dist/sqlite-backend.d.ts +15 -0
- package/dist/types.d.ts +3 -0
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -225,6 +225,16 @@ cost: the directive forbids enumerating the full catalog.
|
|
|
225
225
|
}
|
|
226
226
|
}
|
|
227
227
|
```
|
|
228
|
+
### Skills system: 3-tier resolution
|
|
229
|
+
The plugin resolves skills from three tiers, in this precedence:
|
|
230
|
+
1. **Chore (global)** — bundled skills shipped with the plugin, extracted to
|
|
231
|
+
`~/.agents/skills/` on first run. Read-only from the plugin's perspective.
|
|
232
|
+
2. **Hub (lazy)** — on-demand from `skills-library.com` / `skills.sh`. Materialized
|
|
233
|
+
to `<cwd>/.agents/skills/<slug>/SKILL.md` when the agent calls `omo_skill_get`.
|
|
234
|
+
3. **Custom (project-local)** — written by the agent via the `writing-skills`
|
|
235
|
+
chore skill when no hub match exists.
|
|
236
|
+
The plugin recommends skills to the agent; it never injects skill content into
|
|
237
|
+
prompts. The agent decides which skill to use per task.
|
|
228
238
|
|
|
229
239
|
### Multi-phase plans
|
|
230
240
|
|
package/dist/config.d.ts
CHANGED
|
@@ -152,6 +152,9 @@ export interface MetaGovernorPluginConfig {
|
|
|
152
152
|
minInstalls?: number;
|
|
153
153
|
filterDuplicates?: boolean;
|
|
154
154
|
depsCheck?: boolean;
|
|
155
|
+
choreDir?: string;
|
|
156
|
+
/** v0.35.0: write fetched hub skills to <cwd>/.agents/skills/<slug>/SKILL.md. */
|
|
157
|
+
autoMaterialize?: boolean;
|
|
155
158
|
};
|
|
156
159
|
/** Post-wave workflow gate (v0.21.0): landing directives after Oracle-approved waves. */
|
|
157
160
|
postWave?: PostWaveConfig;
|
package/dist/health.d.ts
CHANGED
|
@@ -23,6 +23,15 @@ export interface PluginHealth {
|
|
|
23
23
|
interventionsDelivered: number;
|
|
24
24
|
orchestratorRuns: number;
|
|
25
25
|
orchestratorErrors: number;
|
|
26
|
+
/** v0.35.0 (Tier 2 materialization): count of materializeSkill() calls
|
|
27
|
+
* that returned reason='denied' (filesystem write failure). */
|
|
28
|
+
materializationFailures: number;
|
|
29
|
+
/** v0.35.0 (Tier 3 advisory): count of writing-skills reminders emitted
|
|
30
|
+
* on zero-result queries. Rate-limited to 1 per query, 3 per session. */
|
|
31
|
+
tier3RemindersSent: number;
|
|
32
|
+
/** v0.35.0 (Tier 3 watcher): count of new SKILL.md files detected under
|
|
33
|
+
* cwd/.agents/skills/. Increments per create/write event from chokidar. */
|
|
34
|
+
tier3SkillsCreated: number;
|
|
26
35
|
lastDecisionISO: string | null;
|
|
27
36
|
lastInterventionISO: string | null;
|
|
28
37
|
};
|