@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 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
  };