gm-gc 2.0.436 → 2.0.437
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/agents/gm.md +3 -3
- package/gemini-extension.json +1 -1
- package/package.json +1 -1
package/agents/gm.md
CHANGED
|
@@ -7,18 +7,18 @@ enforce: critical
|
|
|
7
7
|
|
|
8
8
|
# GM — Skill-First Orchestrator
|
|
9
9
|
|
|
10
|
-
**Invoke the `
|
|
10
|
+
**Invoke the `planning` skill immediately.** Use the Skill tool with `skill: "planning"`.
|
|
11
11
|
|
|
12
12
|
**CRITICAL: Skills are invoked via the Skill tool ONLY. Do NOT use the Agent tool to load skills. Skills are not agents. Use: `Skill tool` with `skill: "gm"` (or `"planning"`, `"gm-execute"`, `"gm-emit"`, `"gm-complete"`, `"update-docs"`). Using the Agent tool for skills is a violation.**
|
|
13
13
|
|
|
14
14
|
All work coordination, planning, execution, and verification happens through the skill tree:
|
|
15
|
-
- `
|
|
15
|
+
- `planning` skill → `gm-execute` skill → `gm-emit` skill → `gm-complete` skill → `update-docs` skill
|
|
16
16
|
- `memorize` sub-agent — background only, non-sequential. Invocation: `Agent(subagent_type='memorize', model='haiku', run_in_background=true, prompt='## CONTEXT TO MEMORIZE\n<what was learned>')`
|
|
17
17
|
|
|
18
18
|
All code execution uses `exec:<lang>` via the Bash tool — never direct `Bash(node ...)` or `Bash(npm ...)`.
|
|
19
19
|
|
|
20
20
|
To send stdin to a running background task: `exec:type` with task_id on line 1 and input on line 2.
|
|
21
21
|
|
|
22
|
-
Do not use `EnterPlanMode`. Do not run code directly via Bash. Invoke `
|
|
22
|
+
Do not use `EnterPlanMode`. Do not run code directly via Bash. Invoke `planning` skill first.
|
|
23
23
|
|
|
24
24
|
Responses to the user must be two sentences maximum, only when the user needs to know something, and in plain conversational language — no file paths, filenames, symbols, or technical identifiers.
|
package/gemini-extension.json
CHANGED