feinai 0.5.3 → 0.5.5
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 +1 -1
- package/package.json +9 -15
- package/src/cli.ts +1 -1
package/README.md
CHANGED
|
@@ -67,7 +67,7 @@ sudo ln -sf ~/.bun/bin/bun /usr/local/bin/bun
|
|
|
67
67
|
|
|
68
68
|
```bash
|
|
69
69
|
mkdir -p ~/.claude/skills
|
|
70
|
-
SKILLS
|
|
70
|
+
SKILLS=~/.bun/install/global/node_modules/feinai/skills
|
|
71
71
|
for skill in feinai-sdd feinai-write-spec feinai-write-tasks feinai-dispatch feinai-implement; do
|
|
72
72
|
ln -sf "$SKILLS/$skill" ~/.claude/skills/$skill
|
|
73
73
|
done
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "feinai",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.5",
|
|
4
4
|
"description": "Task & spec manager for AI agents — parallel worktrees, live dashboard, SDD skills",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
"scripts": {
|
|
11
11
|
"dev": "bun src/cli.ts",
|
|
12
12
|
"test": "bun test",
|
|
13
|
-
"build": "bun build src/cli.ts --compile --outfile dist/
|
|
14
|
-
"build:linux-x64": "bun build src/cli.ts --compile --target=bun-linux-x64 --outfile dist/
|
|
15
|
-
"build:linux-arm64": "bun build src/cli.ts --compile --target=bun-linux-arm64 --outfile dist/
|
|
16
|
-
"build:darwin-x64": "bun build src/cli.ts --compile --target=bun-darwin-x64 --outfile dist/
|
|
17
|
-
"build:darwin-arm64": "bun build src/cli.ts --compile --target=bun-darwin-arm64 --outfile dist/
|
|
13
|
+
"build": "bun build src/cli.ts --compile --outfile dist/feinai",
|
|
14
|
+
"build:linux-x64": "bun build src/cli.ts --compile --target=bun-linux-x64 --outfile dist/feinai-linux-x64",
|
|
15
|
+
"build:linux-arm64": "bun build src/cli.ts --compile --target=bun-linux-arm64 --outfile dist/feinai-linux-arm64",
|
|
16
|
+
"build:darwin-x64": "bun build src/cli.ts --compile --target=bun-darwin-x64 --outfile dist/feinai-darwin-x64",
|
|
17
|
+
"build:darwin-arm64": "bun build src/cli.ts --compile --target=bun-darwin-arm64 --outfile dist/feinai-darwin-arm64",
|
|
18
18
|
"build:all": "bun run build:linux-x64 && bun run build:linux-arm64 && bun run build:darwin-x64 && bun run build:darwin-arm64"
|
|
19
19
|
},
|
|
20
20
|
"keywords": [
|
|
@@ -24,7 +24,8 @@
|
|
|
24
24
|
"ai-agents",
|
|
25
25
|
"sqlite",
|
|
26
26
|
"cli",
|
|
27
|
-
"
|
|
27
|
+
"feinai",
|
|
28
|
+
"multi-agent"
|
|
28
29
|
],
|
|
29
30
|
"license": "MIT",
|
|
30
31
|
"repository": {
|
|
@@ -36,11 +37,7 @@
|
|
|
36
37
|
"url": "https://github.com/mvisca/feinai/issues"
|
|
37
38
|
},
|
|
38
39
|
"engines": {
|
|
39
|
-
"bun": ">=1.3.0"
|
|
40
|
-
"node": ">=22.5.0"
|
|
41
|
-
},
|
|
42
|
-
"optionalDependencies": {
|
|
43
|
-
"better-sqlite3": ">=9.0.0"
|
|
40
|
+
"bun": ">=1.3.0"
|
|
44
41
|
},
|
|
45
42
|
"files": [
|
|
46
43
|
"src/*.ts",
|
|
@@ -53,8 +50,5 @@
|
|
|
53
50
|
],
|
|
54
51
|
"devDependencies": {
|
|
55
52
|
"@types/bun": "latest"
|
|
56
|
-
},
|
|
57
|
-
"peerDependencies": {
|
|
58
|
-
"typescript": "^5"
|
|
59
53
|
}
|
|
60
54
|
}
|