the-grid-cc 1.1.1 → 1.1.2
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/README.md +1 -0
- package/commands/grid/help.md +4 -1
- package/commands/grid/update.md +53 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -90,6 +90,7 @@ If any Program needs your input → **I/O Tower** activates → MCP asks you.
|
|
|
90
90
|
|---------|-------------|
|
|
91
91
|
| `/grid` | Enter The Grid - activates MCP |
|
|
92
92
|
| `/grid:mcp` | Same as above |
|
|
93
|
+
| `/grid:update` | Pull latest updates from GitHub |
|
|
93
94
|
| `/grid:init` | Initialize `.grid/` state directory |
|
|
94
95
|
| `/grid:help` | Show command reference |
|
|
95
96
|
|
package/commands/grid/help.md
CHANGED
|
@@ -15,7 +15,10 @@ Display this help text:
|
|
|
15
15
|
|
|
16
16
|
COMMANDS
|
|
17
17
|
--------
|
|
18
|
-
/grid
|
|
18
|
+
/grid Enter The Grid - speak to MCP
|
|
19
|
+
/grid:mcp Same as above
|
|
20
|
+
/grid:update Pull latest updates from GitHub
|
|
21
|
+
/grid:init Initialize .grid/ state directory
|
|
19
22
|
/grid:help Show this help
|
|
20
23
|
|
|
21
24
|
CONCEPTS
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# /grid:update - Update The Grid
|
|
2
|
+
|
|
3
|
+
---
|
|
4
|
+
name: grid:update
|
|
5
|
+
description: Pull latest Grid updates from GitHub
|
|
6
|
+
allowed-tools:
|
|
7
|
+
- Bash
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
Update The Grid to the latest version without leaving Claude Code.
|
|
11
|
+
|
|
12
|
+
## EXECUTION
|
|
13
|
+
|
|
14
|
+
Run this sequence:
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
# Create temp directory
|
|
18
|
+
rm -rf ~/.grid-temp 2>/dev/null
|
|
19
|
+
git clone --depth 1 https://github.com/JamesWeatherhead/grid.git ~/.grid-temp
|
|
20
|
+
|
|
21
|
+
# Copy updated commands
|
|
22
|
+
cp -r ~/.grid-temp/commands/* ~/.claude/commands/
|
|
23
|
+
|
|
24
|
+
# Copy updated agents
|
|
25
|
+
cp -r ~/.grid-temp/agents/* ~/.claude/agents/
|
|
26
|
+
|
|
27
|
+
# Get version
|
|
28
|
+
cat ~/.grid-temp/commands/grid/VERSION
|
|
29
|
+
|
|
30
|
+
# Cleanup
|
|
31
|
+
rm -rf ~/.grid-temp
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## DISPLAY
|
|
35
|
+
|
|
36
|
+
Show this after update:
|
|
37
|
+
|
|
38
|
+
```
|
|
39
|
+
+============================================================+
|
|
40
|
+
| THE GRID - Update Complete |
|
|
41
|
+
+============================================================+
|
|
42
|
+
| |
|
|
43
|
+
| Commands updated: ~/.claude/commands/grid/ |
|
|
44
|
+
| Agents updated: ~/.claude/agents/grid-*.md |
|
|
45
|
+
| |
|
|
46
|
+
| Version: {version from VERSION file} |
|
|
47
|
+
| |
|
|
48
|
+
+============================================================+
|
|
49
|
+
|
|
50
|
+
MCP > Grid updated. Changes take effect immediately.
|
|
51
|
+
|
|
52
|
+
End of Line.
|
|
53
|
+
```
|