gm-kilo 2.0.1053 → 2.0.1055

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 CHANGED
@@ -1,8 +1,6 @@
1
1
  ---
2
2
  name: gm
3
3
  description: Agent (not skill) - immutable programming state machine. Always invoke for all work coordination.
4
- agent: true
5
- enforce: critical
6
4
  ---
7
5
 
8
6
  # GM — Skill-First Orchestrator
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  name: memorize
3
3
  description: Background memory agent. Classifies context and writes to AGENTS.md + rs-learn. No memory dir, no MEMORY.md.
4
- agent: true
5
4
  ---
6
5
 
7
6
  # Memorize — Background Memory Agent
package/gm-kilo.mjs CHANGED
@@ -146,6 +146,11 @@ export async function GmPlugin({ directory }) {
146
146
  const noMemoPath = join(gmDir, 'no-memorize-this-turn');
147
147
  const tool = input.tool || '';
148
148
  const args = (input.args || (output && output.args) || {});
149
+ if (!sessionStarted) {
150
+ sessionStarted = true;
151
+ try { runPlugkit(['hook', 'session-start']); } catch(e) {}
152
+ try { runPlugkit(['bootstrap', directory]); } catch(e) {}
153
+ }
149
154
  const skillName = (args.skill || args.name || '').toString();
150
155
  if (FORBIDDEN_TOOLS.has(input.tool)) {
151
156
  throw new Error('Use the code-search skill for codebase exploration instead of '+input.tool+'. Describe what you need in plain language.');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-kilo",
3
- "version": "2.0.1053",
3
+ "version": "2.0.1055",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "author": "AnEntrypoint",
6
6
  "license": "MIT",
@@ -46,6 +46,8 @@ The user's request is authorization. When scope is unclear, pick the maximum rea
46
46
 
47
47
  **Terse response**: fragments OK. `[thing] [action] [reason]. [next step].` Code, commits, PRs use normal prose.
48
48
 
49
+ **Caveman medium mode (full) always on**: drop articles (a/an/the), filler (just/really/basically/actually/simply), pleasantries, and hedging. Fragments OK. Use short synonyms. Keep technical terms exact. Keep code blocks and exact error strings unchanged. Pattern: `[thing] [action] [reason]. [next step].` Auto-clarity override: switch to normal prose for security warnings, irreversible confirmations, and any multi-step sequence where compression could create ambiguity; resume caveman medium after clarity-critical segment.
50
+
49
51
  ## End-to-End Phase Chaining (Skills-Based Platforms)
50
52
 
51
53
  When `end-to-end: true` is present in SKILL.md frontmatter, skill output includes structured JSON on stdout (final line):