nfo-cli 0.0.1 → 0.0.2-c
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.
- package/README.md +4 -4
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
> [!WARNING]
|
|
4
4
|
> NFO Is highly experimental, things can break, might not work as expected or the composed music might suck!
|
|
5
5
|
|
|
6
|
-
<p style="text-align: center"><img style="height:100%" src="assets/orche-clawd.png"></p>
|
|
6
|
+
<p style="text-align: center"><img style="height:100%" src="https://raw.githubusercontent.com/javierfurus/nfo/refs/heads/main/assets/orche-clawd.png"></p>
|
|
7
7
|
|
|
8
8
|
> (Yes, I know orchestrators don't have staffs - but look how happy he is)
|
|
9
9
|
|
|
@@ -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
|
-

|
|
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
|
-

|
|
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
|
|
|
@@ -116,4 +116,4 @@ To watch a Musician work just go to the sidebar (if not already there) by `Ctrl
|
|
|
116
116
|
## Copyright
|
|
117
117
|
Claude is a trademark owned by Anthropic.
|
|
118
118
|
|
|
119
|
-
The Claw'd art was done by me. Maybe this was the _real_ reason this project exists so that I could to that.
|
|
119
|
+
The Claw'd art was done by me. Maybe this was the _real_ reason this project exists so that I could to that.
|
package/package.json
CHANGED
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nfo-cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2-c",
|
|
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
|
+
],
|
|
9
17
|
"scripts": {
|
|
10
18
|
"build": "tsc",
|
|
11
19
|
"dev": "tsx src/cli.ts",
|