ironcode-ai 1.20.1 → 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.
Files changed (2) hide show
  1. package/README.md +4 -3
  2. 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** — 9 opinionated slash commands: plan review, code review, QA, ship, retro, and more
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,7 +111,7 @@ Press **`Ctrl+T`** to cycle between variants:
111
111
 
112
112
  ## Skills
113
113
 
114
- IronCode ships with **9 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.
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
  |-------|------|-------------|
@@ -120,8 +120,9 @@ IronCode ships with **9 built-in skill workflows** — opinionated slash command
120
120
  | `/code-review` | Staff engineer | Find bugs that pass CI but blow up in production. Two-pass: critical + informational. |
121
121
  | `/code-ship` | Release engineer | Merge, test, typecheck, review, changelog, bisectable commits, push, and PR — one command. |
122
122
  | `/browse` | QA engineer | Headless Chromium via Playwright. Navigate, click, fill forms, screenshot, assert states, test responsive layouts. |
123
- | `/qa` | QA + fix engineer | Test app, find bugs, fix them with atomic commits, re-verify. Four modes: diff-aware, full, quick, regression. |
123
+ | `/qa` | QA + fix engineer | Test web app, find bugs, fix with atomic commits, re-verify. Four modes: diff-aware, full, quick, regression. |
124
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. |
125
126
  | `/document-release` | Technical writer | Post-ship doc update. Cross-references diff against README, ARCHITECTURE, CONTRIBUTING, CHANGELOG. |
126
127
  | `/retro` | Engineering manager | Team-aware weekly retro: commit analysis, session detection, per-person praise and growth areas. |
127
128
 
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.1",
9
+ "version": "1.20.2",
10
10
  "license": "MIT",
11
11
  "optionalDependencies": {
12
- "ironcode-linux-x64-baseline": "1.20.1",
13
- "ironcode-linux-x64-modern": "1.20.1",
14
- "ironcode-linux-x64-baseline-musl": "1.20.1",
15
- "ironcode-windows-x64-modern": "1.20.1",
16
- "ironcode-darwin-arm64": "1.20.1"
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
  }