@todoforai/tfa-handoff 0.1.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/dist/cli.js +3383 -0
  2. package/package.json +21 -0
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "@todoforai/tfa-handoff",
3
+ "version": "0.1.0",
4
+ "description": "Lightweight TODO for AI handoff — compacts a conversation into a handoff document as a hidden TODO and prints the result to stdout (pipe filter).",
5
+ "type": "module",
6
+ "bin": {
7
+ "tfa-handoff": "./dist/cli.js"
8
+ },
9
+ "scripts": {
10
+ "build": "bun build src/cli.ts --outdir dist --target node --format esm",
11
+ "dev": "bun run src/cli.ts"
12
+ },
13
+ "devDependencies": {
14
+ "@todoforai/tfa-subagent": "^0.1.9",
15
+ "@types/node": "^20.11.0"
16
+ },
17
+ "keywords": ["cli", "ai", "handoff", "todoforai"],
18
+ "author": "TODO for AI",
19
+ "license": "MIT",
20
+ "files": ["dist"]
21
+ }