gm-copilot-cli 2.0.131 → 2.0.132
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/manifest.yml +1 -1
- package/package.json +1 -1
- package/tools.json +1 -1
- package/skills/dev/SKILL.md +0 -48
package/copilot-profile.md
CHANGED
package/manifest.yml
CHANGED
package/package.json
CHANGED
package/tools.json
CHANGED
package/skills/dev/SKILL.md
DELETED
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: dev
|
|
3
|
-
description: Execute code and shell commands. Use for all code execution, file operations, running scripts, testing hypotheses, and any task that requires running code. Replaces plugin:gm:dev and mcp-glootie.
|
|
4
|
-
allowed-tools: Bash
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
# Code Execution with dev
|
|
8
|
-
|
|
9
|
-
Execute code directly using the Bash tool. No wrapper, no persistent files, no cleanup needed beyond what the code itself creates.
|
|
10
|
-
|
|
11
|
-
## Run code inline
|
|
12
|
-
|
|
13
|
-
```bash
|
|
14
|
-
# JavaScript / TypeScript
|
|
15
|
-
bun -e "const fs = require('fs'); console.log(fs.readdirSync('.'))"
|
|
16
|
-
bun -e "import { readFileSync } from 'fs'; console.log(readFileSync('package.json', 'utf-8'))"
|
|
17
|
-
|
|
18
|
-
# Run a file
|
|
19
|
-
bun run script.ts
|
|
20
|
-
node script.js
|
|
21
|
-
|
|
22
|
-
# Python
|
|
23
|
-
python -c "import json; print(json.dumps({'ok': True}))"
|
|
24
|
-
|
|
25
|
-
# Shell
|
|
26
|
-
bash -c "ls -la && cat package.json"
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
## File operations (inline, no temp files)
|
|
30
|
-
|
|
31
|
-
```bash
|
|
32
|
-
# Read
|
|
33
|
-
bun -e "console.log(require('fs').readFileSync('path/to/file', 'utf-8'))"
|
|
34
|
-
|
|
35
|
-
# Write
|
|
36
|
-
bun -e "require('fs').writeFileSync('out.json', JSON.stringify({x:1}, null, 2))"
|
|
37
|
-
|
|
38
|
-
# Stat / exists
|
|
39
|
-
bun -e "const fs=require('fs'); console.log(fs.existsSync('file.txt'), fs.statSync?.('.')?.size)"
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
## Rules
|
|
43
|
-
|
|
44
|
-
- Each run under 15 seconds
|
|
45
|
-
- Pack every related hypothesis into one run — never one idea per run
|
|
46
|
-
- No persistent temp files; if a temp file is needed, delete it in the same command
|
|
47
|
-
- No spawn/exec/fork inside executed code
|
|
48
|
-
- Use `bun` over `node` when available
|