ironcode-ai 1.20.0 → 1.20.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 +24 -9
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -36,7 +36,7 @@ IronCode is a **high-performance CLI AI coding agent** — a fork of [OpenCode](
|
|
|
36
36
|
- 💬 **Chat Integrations** — Control IronCode from Telegram, Discord, or Slack
|
|
37
37
|
- 💻 **Built-in Terminal** — Fish-style autosuggest, tab completion, syntax highlighting
|
|
38
38
|
- 📝 **External Editor** — Opens `$EDITOR`/nvim with auto-install if missing
|
|
39
|
-
- 🧩 **Built-in Skills** —
|
|
39
|
+
- 🧩 **Built-in Skills** — 10 opinionated slash commands: plan review, code review, QA (web + API), ship, retro, and more
|
|
40
40
|
- 🏠 **100% Local** — No cloud services, works completely offline
|
|
41
41
|
- ⚡ **Blazing Fast** — Native Rust for all performance-critical operations
|
|
42
42
|
|
|
@@ -111,21 +111,26 @@ Press **`Ctrl+T`** to cycle between variants:
|
|
|
111
111
|
|
|
112
112
|
## Skills
|
|
113
113
|
|
|
114
|
-
IronCode ships with **built-in skill workflows** — opinionated slash commands that switch the agent into a specialist mode. Instead of one generic assistant, you get: founder, tech lead, paranoid reviewer, release engineer, QA tester.
|
|
114
|
+
IronCode ships with **10 built-in skill workflows** — opinionated slash commands that switch the agent into a specialist mode. Instead of one generic assistant, you get: founder, tech lead, paranoid reviewer, release engineer, QA tester, technical writer, and engineering manager.
|
|
115
115
|
|
|
116
116
|
| Skill | Mode | What it does |
|
|
117
117
|
|-------|------|-------------|
|
|
118
|
-
| `/ceo-review` | Founder | Rethink the problem. Find the 10-star product hiding inside the request. |
|
|
118
|
+
| `/ceo-review` | Founder / CEO | Rethink the problem. Find the 10-star product hiding inside the request. Three modes: Scope Expansion, Hold Scope, Scope Reduction. |
|
|
119
119
|
| `/eng-review` | Tech lead | Lock in architecture, data flow, failure modes, edge cases, and test matrix. |
|
|
120
|
-
| `/code-review` | Staff engineer | Find bugs that pass CI but blow up in production. |
|
|
121
|
-
| `/code-ship` | Release engineer |
|
|
122
|
-
| `/
|
|
120
|
+
| `/code-review` | Staff engineer | Find bugs that pass CI but blow up in production. Two-pass: critical + informational. |
|
|
121
|
+
| `/code-ship` | Release engineer | Merge, test, typecheck, review, changelog, bisectable commits, push, and PR — one command. |
|
|
122
|
+
| `/browse` | QA engineer | Headless Chromium via Playwright. Navigate, click, fill forms, screenshot, assert states, test responsive layouts. |
|
|
123
|
+
| `/qa` | QA + fix engineer | Test web app, find bugs, fix with atomic commits, re-verify. Four modes: diff-aware, full, quick, regression. |
|
|
124
|
+
| `/qa-only` | QA reporter | Report-only QA. Same methodology as `/qa` but never fixes anything. Pure bug report with health score. |
|
|
125
|
+
| `/qa-api` | API tester | REST & GraphQL API testing. Auto-discovers routes, tests every endpoint with valid/invalid/edge-case payloads, auth, schema validation. |
|
|
126
|
+
| `/document-release` | Technical writer | Post-ship doc update. Cross-references diff against README, ARCHITECTURE, CONTRIBUTING, CHANGELOG. |
|
|
127
|
+
| `/retro` | Engineering manager | Team-aware weekly retro: commit analysis, session detection, per-person praise and growth areas. |
|
|
123
128
|
|
|
124
129
|
### Workflow
|
|
125
130
|
|
|
126
131
|
```
|
|
127
|
-
/ceo-review → /eng-review → (code) → /code-review → /code-ship → /qa-
|
|
128
|
-
product architecture build find bugs land it
|
|
132
|
+
/ceo-review → /eng-review → (code) → /code-review → /code-ship → /qa → /document-release → /retro
|
|
133
|
+
product architecture build find bugs land it verify update docs reflect
|
|
129
134
|
```
|
|
130
135
|
|
|
131
136
|
### Example
|
|
@@ -154,8 +159,18 @@ You: (fix it)
|
|
|
154
159
|
You: /code-ship
|
|
155
160
|
IronCode: ✅ Format → typecheck → test → push → PR created
|
|
156
161
|
|
|
157
|
-
You: /qa
|
|
162
|
+
You: /qa http://localhost:3000
|
|
158
163
|
IronCode: [Screenshots, console check, form test] All pages load. Voice flow works.
|
|
164
|
+
Health score: 92/100. 1 medium issue found and fixed.
|
|
165
|
+
|
|
166
|
+
You: /document-release
|
|
167
|
+
IronCode: README.md: added voice transcription to features table.
|
|
168
|
+
CHANGELOG.md: polished voice. All docs up to date.
|
|
169
|
+
|
|
170
|
+
You: /retro
|
|
171
|
+
IronCode: Week of Mar 10: 23 commits, 1.8k LOC, 42% tests, peak: 10pm
|
|
172
|
+
Your biggest ship: voice transcription pipeline.
|
|
173
|
+
Streak: 12 consecutive days.
|
|
159
174
|
```
|
|
160
175
|
|
|
161
176
|
### Custom Skills
|
package/package.json
CHANGED
|
@@ -6,13 +6,13 @@
|
|
|
6
6
|
"scripts": {
|
|
7
7
|
"postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
|
|
8
8
|
},
|
|
9
|
-
"version": "1.20.
|
|
9
|
+
"version": "1.20.2",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"optionalDependencies": {
|
|
12
|
-
"ironcode-linux-x64-baseline": "1.20.
|
|
13
|
-
"ironcode-linux-x64-modern": "1.20.
|
|
14
|
-
"ironcode-linux-x64-baseline-musl": "1.20.
|
|
15
|
-
"ironcode-windows-x64-modern": "1.20.
|
|
16
|
-
"ironcode-darwin-arm64": "1.20.
|
|
12
|
+
"ironcode-linux-x64-baseline": "1.20.2",
|
|
13
|
+
"ironcode-linux-x64-modern": "1.20.2",
|
|
14
|
+
"ironcode-linux-x64-baseline-musl": "1.20.2",
|
|
15
|
+
"ironcode-windows-x64-modern": "1.20.2",
|
|
16
|
+
"ironcode-darwin-arm64": "1.20.2"
|
|
17
17
|
}
|
|
18
18
|
}
|