@agents-inc/cli 0.74.10 → 0.74.11

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 (3) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/README.md +11 -5
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -7,6 +7,19 @@ Each release has detailed notes in its own file under [`changelogs/`](./changelo
7
7
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
8
8
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
9
9
 
10
+ ## [0.74.11] - 2026-03-14
11
+
12
+ **Documentation overhaul — README, standards, .ai-docs**
13
+
14
+ - README rewritten with screenshots and visual wizard walkthrough
15
+ - Standards consolidated: E2E testing bible, TypeScript types bible
16
+ - .ai-docs validated against current source (12 files updated)
17
+ - 39 redundant/completed docs removed
18
+
19
+ See [changelogs/0.74.11.md](./changelogs/0.74.11.md) for full details.
20
+
21
+ ---
22
+
10
23
  ## [0.74.10] - 2026-03-14
11
24
 
12
25
  **E2E test file splits for parallel execution**
package/README.md CHANGED
@@ -23,7 +23,10 @@ Compose specialized [Claude Code](https://docs.anthropic.com/en/docs/claude-code
23
23
  npx @agents-inc/cli init
24
24
  ```
25
25
 
26
- ![Stack selection](screenshots/step-stack.png)
26
+ <p align="center">
27
+ <img src="screenshots/stack-selection.png" alt="Stack selection" width="700">
28
+ </p>
29
+
27
30
  Choose a pre-built stack or start from scratch. Stacks pre-select skills and agents for common tech combinations.
28
31
 
29
32
  | Stack | Technologies |
@@ -35,13 +38,16 @@ Choose a pre-built stack or start from scratch. Stacks pre-select skills and age
35
38
  | `remix-stack` | Remix + React + Hono + Drizzle |
36
39
  | `solidjs-stack` | SolidJS + Hono + Drizzle |
37
40
 
38
- ![Skill selection grid](screenshots/step-skills.png)
41
+ <p align="center">
42
+ <img src="screenshots/skill-selection.png" alt="Skill selection" width="700">
43
+ </p>
44
+
39
45
  Add or remove skills from the interactive grid. Skills are organized by domain with framework-aware filtering.
40
46
 
41
- ![Source selection](screenshots/step-sources.png)
42
- Select where each skill comes from: the public marketplace, a custom marketplace, or a local directory.
47
+ <p align="center">
48
+ <img src="screenshots/agent-selection.png" alt="Agent selection" width="700">
49
+ </p>
43
50
 
44
- ![Agent selection](screenshots/step-agents.png)
45
51
  Choose which subagents to compile. Each agent is composed from the skills you selected.
46
52
 
47
53
  After init, use `agentsinc edit` to change selections and `agentsinc compile` to rebuild.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agents-inc/cli",
3
- "version": "0.74.10",
3
+ "version": "0.74.11",
4
4
  "description": "CLI for managing Agents Inc. skills, stacks, and agents for Claude Code",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",