gm-cc 2.0.65 → 2.0.67

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.
@@ -4,7 +4,7 @@
4
4
  "name": "AnEntrypoint"
5
5
  },
6
6
  "description": "State machine agent with hooks, skills, and automated git enforcement",
7
- "version": "2.0.65",
7
+ "version": "2.0.67",
8
8
  "metadata": {
9
9
  "description": "State machine agent with hooks, skills, and automated git enforcement"
10
10
  },
package/agents/gm.md CHANGED
@@ -97,7 +97,7 @@ All execution via Bash tool or `agent-browser` skill. Every hypothesis proven by
97
97
  - Package/version tools: `npm`, `npx`
98
98
  - VCS: `git`, `gh`
99
99
  - Containers/services: `docker`, `systemctl`, `sudo systemctl`
100
- - **Everything else is blocked.** Do NOT use shell builtins (ls, cat, grep, find, echo, cp, mv, rm, sed, awk). Instead: write logic as inline code and run it — `node -e "..."`, `python -c "..."`, `bun -e "..."`. Use Read/Write/Edit for file ops. Use code-search skill for exploration.
100
+ - **Everything else is blocked.** Do NOT use shell builtins (ls, cat, grep, find, echo, cp, mv, rm, sed, awk). Instead: write logic as inline code and run it — `node -e "..."`, `python -c "..."`, `bun -e "..."`. Use Read/Write/Edit for file ops. Use code-search skill for exploration. Whenever possible, use piping instead of inline intructions.
101
101
 
102
102
  **CODE EXECUTION PATTERNS** (use Bash tool):
103
103
 
package/cli.js CHANGED
@@ -19,6 +19,7 @@ try {
19
19
  const filesToCopy = [
20
20
  'agents',
21
21
  'hooks',
22
+ 'skills',
22
23
  '.mcp.json',
23
24
  '.claude-plugin',
24
25
  'plugin.json',
@@ -67,7 +68,7 @@ try {
67
68
  const existing = Array.isArray(installedPlugins.plugins['gm@gm-cc']) ? installedPlugins.plugins['gm@gm-cc'][0] : null;
68
69
  // Also write cache dir so Claude Code finds it without network fetch
69
70
  const cacheDir = path.join(pluginsDir, 'cache', 'gm-cc', 'gm', pluginVersion);
70
- const filesToCache = ['agents', 'hooks', '.mcp.json', '.claude-plugin', 'plugin.json', 'README.md', 'CLAUDE.md'];
71
+ const filesToCache = ['agents', 'hooks', 'skills', '.mcp.json', '.claude-plugin', 'plugin.json', 'README.md', 'CLAUDE.md'];
71
72
  function copyRecursiveCache(src, dst) {
72
73
  if (!fs.existsSync(src)) return;
73
74
  if (fs.statSync(src).isDirectory()) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-cc",
3
- "version": "2.0.65",
3
+ "version": "2.0.67",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "author": "AnEntrypoint",
6
6
  "license": "MIT",
package/plugin.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm",
3
- "version": "2.0.65",
3
+ "version": "2.0.67",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "author": {
6
6
  "name": "AnEntrypoint",