tuhdoo 0.4.0 → 0.5.0

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 +21 -9
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -1,25 +1,37 @@
1
1
  # tuhdoo
2
2
 
3
- A coordination fabric for agent fleets, steered by humans: a shared backlog,
4
- work queue, and activity ledger living in a git orphan branch inside the repo
5
- it plans. Synced through an ordinary git remote no server, no vendor, no
6
- accounts.
3
+ A coordination fabric for agent fleets, steered by humans.
4
+
5
+ tuhdoo gives your coding agents a shared backlog, work queue, and activity
6
+ ledger — the durable record of every claim, note, and outcome — stored on
7
+ a git branch inside the repo it plans. It syncs over the git remote you
8
+ already have — no server, no vendor, no accounts.
7
9
 
8
10
  This package is a thin launcher: the real tuhdoo is a single static Go
9
- binary, installed for your platform via one of the `@tuhdoo/*`
10
- optionalDependencies. Installing as a devDependency pins the binary per
11
- project through your lockfile.
11
+ binary, and your package manager installs the build for your platform
12
+ (macOS or Linux) through one of the `@tuhdoo/*` optional dependencies.
13
+ Installing tuhdoo as a devDependency pins the binary version per project
14
+ through your lockfile.
15
+
16
+ ## Install
12
17
 
13
18
  ```sh
14
- npm i -D tuhdoo
19
+ npm i -D tuhdoo # or: pnpm add -D tuhdoo
20
+ # or: yarn add -D tuhdoo
15
21
  npx tuhdoo init # inside the repository you want to plan
16
22
  npx tuhdoo status
17
23
  ```
18
24
 
19
- Agents connect through the stdio MCP shim:
25
+ ## Connect an agent
26
+
27
+ Agents connect through the Model Context Protocol (MCP) shim, spoken over
28
+ standard input/output (stdio). Add this to your agent harness's MCP
29
+ config:
20
30
 
21
31
  ```json
22
32
  { "mcpServers": { "tuhdoo": { "command": "npx", "args": ["tuhdoo", "mcp"] } } }
23
33
  ```
24
34
 
35
+ ## Learn more
36
+
25
37
  Docs, design record, and source: <https://github.com/brandonbews/tuhdoo>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tuhdoo",
3
- "version": "0.4.0",
3
+ "version": "0.5.0",
4
4
  "description": "A coordination fabric for agent fleets, steered by humans: a shared backlog, work queue, and activity ledger living in a git orphan branch inside the repo it plans.",
5
5
  "keywords": [
6
6
  "agents",
@@ -25,9 +25,9 @@
25
25
  "linux"
26
26
  ],
27
27
  "optionalDependencies": {
28
- "@tuhdoo/darwin-arm64": "0.4.0",
29
- "@tuhdoo/darwin-x64": "0.4.0",
30
- "@tuhdoo/linux-arm64": "0.4.0",
31
- "@tuhdoo/linux-x64": "0.4.0"
28
+ "@tuhdoo/darwin-arm64": "0.5.0",
29
+ "@tuhdoo/darwin-x64": "0.5.0",
30
+ "@tuhdoo/linux-arm64": "0.5.0",
31
+ "@tuhdoo/linux-x64": "0.5.0"
32
32
  }
33
33
  }