@totoroyyb/amag 0.1.0 → 0.1.1
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 +16 -19
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# AMAG
|
|
1
|
+
# AMAG: All Mighty AntiGravity
|
|
2
2
|
|
|
3
3
|
Agent orchestration for [Antigravity](https://antigravity.google). Curated rules, workflows, and skills that transform Antigravity's AI agent into a disciplined engineering partner.
|
|
4
4
|
|
|
@@ -7,14 +7,11 @@ Inspired by [oh-my-opencode](https://github.com/code-yeongyu/oh-my-opencode) —
|
|
|
7
7
|
## Quick Start
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npm install -g @totoroyyb/amag
|
|
11
|
-
|
|
12
|
-
# Initialize in your project
|
|
13
10
|
cd /path/to/your/project
|
|
14
|
-
amag init
|
|
11
|
+
npx @totoroyyb/amag init
|
|
15
12
|
```
|
|
16
13
|
|
|
17
|
-
Or
|
|
14
|
+
Or build from source:
|
|
18
15
|
|
|
19
16
|
```bash
|
|
20
17
|
git clone https://github.com/totoroyyb/amag.git
|
|
@@ -107,11 +104,11 @@ Agent: [structural scan → module deep-dives → synthesizes architecture doc]
|
|
|
107
104
|
AMAG can delegate to external CLI agents (Claude, Codex, Gemini) for plan review and debugging consultation. Configure via:
|
|
108
105
|
|
|
109
106
|
```bash
|
|
110
|
-
amag config show # View current config
|
|
111
|
-
amag config set review.consultant.cli claude # Set plan consultant
|
|
112
|
-
amag config set debug.consultant.cli codex # Set debug consultant
|
|
113
|
-
amag config set review.critic.thinking high # Set thinking level
|
|
114
|
-
amag config reset # Reset to defaults
|
|
107
|
+
npx @totoroyyb/amag config show # View current config
|
|
108
|
+
npx @totoroyyb/amag config set review.consultant.cli claude # Set plan consultant
|
|
109
|
+
npx @totoroyyb/amag config set debug.consultant.cli codex # Set debug consultant
|
|
110
|
+
npx @totoroyyb/amag config set review.critic.thinking high # Set thinking level
|
|
111
|
+
npx @totoroyyb/amag config reset # Reset to defaults
|
|
115
112
|
```
|
|
116
113
|
|
|
117
114
|
Thinking levels: `max`, `high`, `medium`, `low`, `none`.
|
|
@@ -119,14 +116,14 @@ Thinking levels: `max`, `high`, `medium`, `low`, `none`.
|
|
|
119
116
|
## CLI Reference
|
|
120
117
|
|
|
121
118
|
```bash
|
|
122
|
-
amag init # Install all components
|
|
123
|
-
amag update # Overwrite with latest templates
|
|
124
|
-
amag add <type> <name> # Install one component (rule, workflow, skill)
|
|
125
|
-
amag remove <type> <name> # Remove one component
|
|
126
|
-
amag uninstall # Remove all AMAG files
|
|
127
|
-
amag list # Show available components
|
|
128
|
-
amag doctor # Check installation status
|
|
129
|
-
amag config show|set|reset # Manage configuration
|
|
119
|
+
npx @totoroyyb/amag init # Install all components
|
|
120
|
+
npx @totoroyyb/amag update # Overwrite with latest templates
|
|
121
|
+
npx @totoroyyb/amag add <type> <name> # Install one component (rule, workflow, skill)
|
|
122
|
+
npx @totoroyyb/amag remove <type> <name> # Remove one component
|
|
123
|
+
npx @totoroyyb/amag uninstall # Remove all AMAG files
|
|
124
|
+
npx @totoroyyb/amag list # Show available components
|
|
125
|
+
npx @totoroyyb/amag doctor # Check installation status
|
|
126
|
+
npx @totoroyyb/amag config show|set|reset # Manage configuration
|
|
130
127
|
```
|
|
131
128
|
|
|
132
129
|
## Design Philosophy
|