create-forge-team 0.2.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.
- package/README.md +73 -0
- package/dist/chunk-GOZ3OAFK.js +805 -0
- package/dist/chunk-N62P5WWV.js +108 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +7456 -0
- package/dist/memory-DGOVUFNJ.js +21 -0
- package/dist/openrouter-client-DAUFUMZX.js +8 -0
- package/package.json +54 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import {
|
|
2
|
+
enqueueTranscript,
|
|
3
|
+
getKnowledgeDir,
|
|
4
|
+
getMemoryStatus,
|
|
5
|
+
getTranscriptsDir,
|
|
6
|
+
processQueue,
|
|
7
|
+
processTranscript,
|
|
8
|
+
runMaintenance,
|
|
9
|
+
saveTranscript
|
|
10
|
+
} from "./chunk-GOZ3OAFK.js";
|
|
11
|
+
import "./chunk-N62P5WWV.js";
|
|
12
|
+
export {
|
|
13
|
+
enqueueTranscript,
|
|
14
|
+
getKnowledgeDir,
|
|
15
|
+
getMemoryStatus,
|
|
16
|
+
getTranscriptsDir,
|
|
17
|
+
processQueue,
|
|
18
|
+
processTranscript,
|
|
19
|
+
runMaintenance,
|
|
20
|
+
saveTranscript
|
|
21
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-forge-team",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Build a team of AI agents for Claude Code. Describe your situation, Forge interviews you and generates personalized agents with skills that evolve over time.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"create-forge-team": "dist/index.js",
|
|
8
|
+
"forge": "dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"dev": "tsx watch src/index.ts",
|
|
12
|
+
"build": "tsup src/index.ts --format esm --dts --clean",
|
|
13
|
+
"test": "vitest run",
|
|
14
|
+
"test:watch": "vitest",
|
|
15
|
+
"start": "node dist/index.js"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"claude-code",
|
|
19
|
+
"ai-agents",
|
|
20
|
+
"multi-agent",
|
|
21
|
+
"skills",
|
|
22
|
+
"forge"
|
|
23
|
+
],
|
|
24
|
+
"author": "Anish Bharadwaj",
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"publishConfig": {
|
|
27
|
+
"access": "public"
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"dist"
|
|
31
|
+
],
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"@anthropic-ai/claude-agent-sdk": "^0.2.47",
|
|
34
|
+
"@anthropic-ai/sdk": "^0.39.0",
|
|
35
|
+
"@google/generative-ai": "^0.24.1",
|
|
36
|
+
"@inquirer/prompts": "^7.0.0",
|
|
37
|
+
"chalk": "^5.4.0",
|
|
38
|
+
"commander": "^13.0.0",
|
|
39
|
+
"dotenv": "^17.3.1",
|
|
40
|
+
"js-yaml": "^4.1.0",
|
|
41
|
+
"nanoid": "^5.1.6",
|
|
42
|
+
"ora": "^8.0.0",
|
|
43
|
+
"ws": "^8.19.0"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@types/js-yaml": "^4.0.9",
|
|
47
|
+
"@types/node": "^22.0.0",
|
|
48
|
+
"@types/ws": "^8.18.1",
|
|
49
|
+
"tsup": "^8.0.0",
|
|
50
|
+
"tsx": "^4.0.0",
|
|
51
|
+
"typescript": "^5.7.0",
|
|
52
|
+
"vitest": "^4.0.18"
|
|
53
|
+
}
|
|
54
|
+
}
|