Skip to content

Commit 9c5c0f4

Browse files
KyleAMathewsclaude
andcommitted
Rename init→install, Playbooks→Intents
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 563b9eb commit 9c5c0f4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/blog/from-docs-to-agents.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,15 @@ The alternative — hoping model providers re-train on your latest docs — is n
7878

7979
## The dependency graph does the discovery
8080

81-
When a developer runs `intent init`, the CLI discovers every intent-enabled package and wires skills into the agent configuration — CLAUDE.md, .cursorrules, whatever the tooling expects.
81+
When a developer runs `intent install`, the CLI discovers every intent-enabled package and wires skills into the agent configuration — CLAUDE.md, .cursorrules, whatever the tooling expects.
8282

8383
```bash
84-
npx intent init
84+
npx intent install
8585
```
8686

87-
![intent init discovers intent-enabled packages in node_modules and wires skills into agent config](./diagram-discovery.svg)
87+
![intent install discovers intent-enabled packages in node_modules and wires skills into agent config](./diagram-discovery.svg)
8888

89-
No per-library setup. No hunting for rules files. Install the package, run `intent init`, and the agent understands the tool. Update the package, and skills update too. Knowledge travels the same channel as code.
89+
No per-library setup. No hunting for rules files. Install the package, run `intent install`, and the agent understands the tool. Update the package, and skills update too. Knowledge travels the same channel as code.
9090

9191
`intent list` shows you what's available:
9292

@@ -101,11 +101,11 @@ For library maintainers, `intent meta` surfaces meta-skills — higher-level gui
101101
npx intent meta
102102
```
103103

104-
## From skills to playbooks
104+
## From skills to intents
105105

106106
A single skill helps an agent use one tool correctly. Real development demands composition — routing *with* server state *with* a data grid *with* client-side storage. No single skill covers how they fit together.
107107

108-
Playbooks orchestrate. A developer says "build a paginated data table with URL-synced filters" and the playbook loads the right skills in the right order — search params, loader/query integration, table columnDefs. Goals map to skill combinations.
108+
Intents orchestrate. A developer says "build a paginated data table with URL-synced filters" and the intent loads the right skills in the right order — search params, loader/query integration, table columnDefs. Goals map to skill combinations.
109109

110110
The more libraries that ship skills, the richer composition becomes.
111111

0 commit comments

Comments
 (0)