create-fetch-agent 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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -9,7 +9,7 @@ npx create-fetch-agent my-app
9
9
  npm create fetch-agent@latest my-app
10
10
  ```
11
11
 
12
- The generated project runs immediately seeds are pre-filled, addresses are
12
+ The generated project runs immediately: seeds are pre-filled, addresses are
13
13
  derived from them, ports are assigned, and a `Makefile` starts every agent. The
14
14
  only things left as `TODO` are the workflow functions where *your* logic goes.
15
15
 
@@ -99,17 +99,17 @@ Ports are deterministic: the orchestrator owns `8003`; workers fill
99
99
 
100
100
  `create-fetch-agent` deliberately separates three concerns:
101
101
 
102
- 1. **`create-fetch-agent` (this tool)** owns project structure, runnable starter
102
+ 1. **`create-fetch-agent` (this tool)**: owns project structure, runnable starter
103
103
  code, seed generation, dependency install, and Agentverse guidance.
104
- 2. **The [`fetch-help`](https://github.com/harvest7777/fetch-help) template** the
104
+ 2. **The [`fetch-help`](https://github.com/harvest7777/fetch-help) template**: the
105
105
  canonical orchestrator + workers architecture this tool stamps out and
106
106
  parameterizes (names, counts, ports, seeds).
107
- 3. **[`fetch-skills`](https://www.npmjs.com/package/fetch-skills)** a context
107
+ 3. **[`fetch-skills`](https://www.npmjs.com/package/fetch-skills)**: a context
108
108
  installer that writes `SKILL.md` instruction files for AI coding tools. It
109
109
  writes *no code*; this tool delegates the "AI-editor context" step to it
110
110
  instead of reinventing thousands of lines of skill markdown.
111
111
 
112
- **Design philosophy hybrid:** emit a *minimal runnable skeleton* (works on the
112
+ **Design philosophy: hybrid:** emit a *minimal runnable skeleton* (works on the
113
113
  first run with no AI tool) whose extension points are pre-marked, then install
114
114
  fetch-skills context so your AI tool can flesh those points out correctly.
115
115
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-fetch-agent",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Scaffold runnable Fetch.ai uAgent projects with one command, then layer in AI-coding-tool context.",
5
5
  "type": "module",
6
6
  "bin": {