@herjarsa/omo-meta-governor 0.35.2 → 0.35.4

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 (2) hide show
  1. package/README.md +16 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -86,6 +86,22 @@ process boundaries, lifecycle, and the opencode event hooks
86
86
 
87
87
  ---
88
88
 
89
+ ## Workflow guide (v0.35.4)
90
+
91
+ The plugin itself does not force a workflow — it gives the agent a guard against unprimed `write` calls, and the rest is judgement. For your agent to use the catalogued skills in the right order, classify the task into one of three tiers and follow the corresponding chain.
92
+
93
+ | Tier | Trigger | Required skills (in order) |
94
+ |---|---|---|
95
+ | **0 Trivial** | config tweak, doc edit, single-line fix | none — edit → typecheck → done |
96
+ | **1 Standard** (default) | new feature or fix in 1-2 files, no schema/security/CI touch | `brainstorming` → `find-skills` → `test-driven-development` → `verification-before-completion` |
97
+ | **2 Critical** | 3+ files, core plugin logic, schema, CI, security, refactor | ALL of Tier 1, plus `writing-plans` → `subagent-driven-development` → `requesting-code-review` → `finishing-a-development-branch` |
98
+
99
+ Full reference: see [`AGENTS.md`](AGENTS.md) (Skill Workflow section).
100
+
101
+ **When in doubt, go up one tier.** Cost of over-ceremony is ~5 minutes; cost of skipping is a broken commit + a 2-hour revert.
102
+
103
+ ---
104
+
89
105
  ## 12 Custom Tools
90
106
 
91
107
  The plugin registers 12 tools the LLM can invoke. All are available
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@herjarsa/omo-meta-governor",
3
- "version": "0.35.2",
3
+ "version": "0.35.4",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/herjarsa/omo-meta-governor.git"
@@ -50,4 +50,4 @@
50
50
  },
51
51
  "type": "module",
52
52
  "types": "./dist/index.d.ts"
53
- }
53
+ }