nfo-cli 0.0.2-c → 0.0.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 +2 -2
  2. package/package.json +1 -9
package/README.md CHANGED
@@ -29,11 +29,11 @@ This will create an **Orchestra** with your project's name and an **Orchestrator
29
29
 
30
30
  Everything that you have in your regular Claude session is available in your NFO session. Just ask your Orchestrator what you want to do, and it will do it for you by spawning several **Musicians** to tackle the task.
31
31
 
32
- ![main-screen](https://raw.githubusercontent.com/javierfurus/nfo/refs/heads/main/assets/main-screen.png)
32
+ ![main-screen](./assets/main-screen.png)
33
33
 
34
34
  These Musicians are either `Sonnet` or `Haiku` agents used to explore your codebase or code. Using **Hub-and-Spoke** the agents communicate with the Orchestrator and the Orchestrator decides the next steps. This structure allows the smarter model to keep its context clean and save cost by using other models at what they are best. They are all assigned to your Orchestra and you can freely move between them, see what they are doing or steer them by using `/btw`. You can also ask your Orchestrator to tell them what to do!
35
35
 
36
- ![agent-screen](https://raw.githubusercontent.com/javierfurus/nfo/refs/heads/main/assets/agent-screen.png)
36
+ ![agent-screen](./assets/agent-screen.png)
37
37
 
38
38
  They can work in parallel or sequentially, depending on what the task demands. NFO leverages **worktrees** to keep your environment clean and avoid agents stepping on each other's toes.
39
39
 
package/package.json CHANGED
@@ -1,19 +1,11 @@
1
1
  {
2
2
  "name": "nfo-cli",
3
- "version": "0.0.2-c",
3
+ "version": "0.0.2",
4
4
  "description": "NoFluffOrchestra — TUI multi-agent orchestrator for existing repos",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "nfo": "./dist/cli.js"
8
8
  },
9
- "keywords": [
10
- "claude",
11
- "claude-code",
12
- "ai",
13
- "orchestraror",
14
- "mcp",
15
- "agents"
16
- ],
17
9
  "scripts": {
18
10
  "build": "tsc",
19
11
  "dev": "tsx src/cli.ts",