gm-oc 2.0.5 → 2.0.7
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/gm.mjs +2 -2
- package/index.js +1 -1
- package/package.json +2 -2
package/gm.mjs
CHANGED
|
@@ -8,7 +8,7 @@ const SEARCH_TOOLS = ['glob', 'grep', 'list'];
|
|
|
8
8
|
|
|
9
9
|
let thornsOutput = '';
|
|
10
10
|
|
|
11
|
-
export const
|
|
11
|
+
export const GmPlugin = async ({ project, client, $, directory, worktree }) => {
|
|
12
12
|
const pluginDir = path.dirname(fileURLToPath(import.meta.url));
|
|
13
13
|
let agentRules = '';
|
|
14
14
|
|
|
@@ -74,7 +74,7 @@ export const GlootiePlugin = async ({ project, client, $, directory, worktree })
|
|
|
74
74
|
const inSkills = fp.includes('/skills/');
|
|
75
75
|
if ((ext === '.md' || ext === '.txt' || base.startsWith('features_list')) &&
|
|
76
76
|
!base.startsWith('claude') && !base.startsWith('readme') && !base.startsWith('gm') && !inSkills) {
|
|
77
|
-
throw new Error('Cannot create documentation files. Only CLAUDE.md,
|
|
77
|
+
throw new Error('Cannot create documentation files. Only CLAUDE.md, GM.md, and README.md are maintained.');
|
|
78
78
|
}
|
|
79
79
|
}
|
|
80
80
|
},
|
package/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { GmPlugin } from './gm.mjs';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gm-oc",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.7",
|
|
4
4
|
"description": "Advanced Claude Code plugin with WFGY integration, MCP tools, and automated hooks",
|
|
5
5
|
"author": "AnEntrypoint",
|
|
6
6
|
"license": "MIT",
|
|
@@ -45,4 +45,4 @@
|
|
|
45
45
|
"cli.mjs",
|
|
46
46
|
"install.mjs"
|
|
47
47
|
]
|
|
48
|
-
}
|
|
48
|
+
}
|