gm-copilot-cli 2.0.195 → 2.0.197
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/copilot-profile.md +1 -1
- package/hooks/pre-tool-use-hook.js +17 -4
- package/index.html +1 -1
- package/manifest.yml +1 -1
- package/package.json +1 -1
- package/skills/gm/SKILL.md +1 -1
- package/tools.json +1 -1
package/copilot-profile.md
CHANGED
|
@@ -18,12 +18,17 @@ const deny = (reason) => isGemini
|
|
|
18
18
|
? { decision: 'deny', reason }
|
|
19
19
|
: { hookSpecificOutput: { hookEventName: 'PreToolUse', permissionDecision: 'deny', permissionDecisionReason: reason } };
|
|
20
20
|
const allowWithNoop = (context) => {
|
|
21
|
-
const
|
|
21
|
+
const tmp = path.join(os.tmpdir(), `gm-out-${Date.now()}.txt`);
|
|
22
|
+
fs.writeFileSync(tmp, context, 'utf-8');
|
|
23
|
+
const IS_WIN = process.platform === 'win32';
|
|
24
|
+
const cmd = IS_WIN
|
|
25
|
+
? `powershell -NoProfile -NonInteractive -Command "Get-Content -Raw '${tmp}'; Remove-Item '${tmp}'"`
|
|
26
|
+
: `cat '${tmp}'; rm -f '${tmp}'`;
|
|
22
27
|
return {
|
|
23
28
|
hookSpecificOutput: {
|
|
24
29
|
hookEventName: 'PreToolUse',
|
|
25
30
|
permissionDecision: 'allow',
|
|
26
|
-
updatedInput: { command:
|
|
31
|
+
updatedInput: { command: cmd }
|
|
27
32
|
}
|
|
28
33
|
};
|
|
29
34
|
};
|
|
@@ -78,6 +83,11 @@ const run = () => {
|
|
|
78
83
|
|
|
79
84
|
if (tool_name === 'Bash') {
|
|
80
85
|
const command = (tool_input?.command || '').trim();
|
|
86
|
+
const stripFooter = (s) => s.replace(/\n\[Running tools\][\s\S]*$/, '').trimEnd();
|
|
87
|
+
if (/^exec:pm2list\s*$/.test(command)) {
|
|
88
|
+
const r = spawnSync('bun', ['x', 'gm-exec', 'pm2list'], { encoding: 'utf-8', timeout: 15000 });
|
|
89
|
+
return allowWithNoop(`exec:pm2list output:\n\n${stripFooter((r.stdout || '') + (r.stderr || ''))}`);
|
|
90
|
+
}
|
|
81
91
|
const execMatch = command.match(/^exec(?::(\S+))?\n([\s\S]+)$/);
|
|
82
92
|
if (execMatch) {
|
|
83
93
|
const rawLang = (execMatch[1] || '').toLowerCase();
|
|
@@ -92,10 +102,9 @@ const run = () => {
|
|
|
92
102
|
if (/^\s*(echo |ls |cd |mkdir |rm |cat |grep |find |export |source |#!)/.test(src)) return 'bash';
|
|
93
103
|
return 'nodejs';
|
|
94
104
|
};
|
|
95
|
-
const aliases = { js: 'nodejs', javascript: 'nodejs', ts: 'typescript', node: 'nodejs', py: 'python', sh: 'bash', shell: 'bash', zsh: 'bash', powershell: 'bash', ps1: 'bash', cmd: 'bash', browser: 'agent-browser', ab: 'agent-browser', codesearch: 'codesearch', search: 'search', status: 'status', sleep: 'sleep', close: 'close', runner: 'runner', type: 'type' };
|
|
105
|
+
const aliases = { js: 'nodejs', javascript: 'nodejs', ts: 'typescript', node: 'nodejs', py: 'python', sh: 'bash', shell: 'bash', zsh: 'bash', powershell: 'bash', ps1: 'bash', cmd: 'bash', browser: 'agent-browser', ab: 'agent-browser', codesearch: 'codesearch', search: 'search', status: 'status', sleep: 'sleep', close: 'close', runner: 'runner', type: 'type', pm2list: 'pm2list' };
|
|
96
106
|
const lang = aliases[rawLang] || rawLang || detectLang(code);
|
|
97
107
|
const IS_WIN = process.platform === 'win32';
|
|
98
|
-
const stripFooter = (s) => s.replace(/\n\[Running tools\][\s\S]*$/, '').trimEnd();
|
|
99
108
|
const langExts = { nodejs: 'mjs', typescript: 'ts', deno: 'ts', python: 'py', bash: IS_WIN ? 'ps1' : 'sh', go: 'go', rust: 'rs', c: 'c', cpp: 'cpp', java: 'java' };
|
|
100
109
|
const spawnDirect = (bin, args, stdin) => {
|
|
101
110
|
const opts = { encoding: 'utf-8', timeout: 60000, ...(cwd && { cwd }), ...(stdin !== undefined && { input: stdin }) };
|
|
@@ -158,6 +167,10 @@ const run = () => {
|
|
|
158
167
|
const r = spawnSync('bun', ['x', 'gm-exec', 'type', taskId, input], { encoding: 'utf-8', timeout: 15000 });
|
|
159
168
|
return allowWithNoop(`exec:type output:\n\n${stripFooter((r.stdout || '') + (r.stderr || ''))}`);
|
|
160
169
|
}
|
|
170
|
+
if (lang === 'pm2list') {
|
|
171
|
+
const r = spawnSync('bun', ['x', 'gm-exec', 'pm2list'], { encoding: 'utf-8', timeout: 15000 });
|
|
172
|
+
return allowWithNoop(`exec:pm2list output:\n\n${stripFooter((r.stdout || '') + (r.stderr || ''))}`);
|
|
173
|
+
}
|
|
161
174
|
try {
|
|
162
175
|
let result;
|
|
163
176
|
if (lang === 'bash') {
|
package/index.html
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
<script type="module">
|
|
19
19
|
import { createElement as h, applyDiff, Fragment } from "webjsx";
|
|
20
20
|
const PLATFORM_NAME="Copilot CLI",PLATFORM_TYPE="CLI Tool",PLATFORM_TYPE_COLOR="#3b82f6";
|
|
21
|
-
const DESCRIPTION="State machine agent with hooks, skills, and automated git enforcement",VERSION="2.0.
|
|
21
|
+
const DESCRIPTION="State machine agent with hooks, skills, and automated git enforcement",VERSION="2.0.197";
|
|
22
22
|
const GITHUB_URL="https://github.com/AnEntrypoint/gm-copilot-cli",BADGE_LABEL="copilot-cli";
|
|
23
23
|
const FEATURES=[{"title":"State Machine","desc":"Immutable PLAN→EXECUTE→EMIT→VERIFY→COMPLETE phases with full mutable tracking"},{"title":"Semantic Search","desc":"Natural language codebase exploration via codesearch skill — no grep needed"},{"title":"Hooks","desc":"Pre-tool, session-start, prompt-submit, and stop hooks for full lifecycle control"},{"title":"Agents","desc":"gm, codesearch, and websearch agents pre-configured and ready to use"},{"title":"MCP Integration","desc":"Model Context Protocol server support built in"},{"title":"Auto-Recovery","desc":"Supervisor hierarchy ensures the system never crashes"}],INSTALL_STEPS=[{"desc":"Install via GitHub CLI","cmd":"gh extension install AnEntrypoint/gm-copilot-cli"},{"desc":"Restart your terminal — activates automatically"}];
|
|
24
24
|
const CURRENT_PLATFORM="gm-copilot-cli";
|
package/manifest.yml
CHANGED
package/package.json
CHANGED
package/skills/gm/SKILL.md
CHANGED
|
@@ -73,7 +73,7 @@ exec:runner
|
|
|
73
73
|
start|stop|status
|
|
74
74
|
```
|
|
75
75
|
|
|
76
|
-
`exec:runner start` launches
|
|
76
|
+
`exec:runner start` launches the `gm-exec-runner` PM2 process. Each `exec:<lang>` call creates its own `gm-exec-task-{id}` PM2 process — all appear in `pm2 list`. Use `exec:runner status` to check the runner. Use `exec:pm2list` to see all processes including exec tasks.
|
|
77
77
|
|
|
78
78
|
## CODEBASE EXPLORATION
|
|
79
79
|
|