-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathproject_map.json
More file actions
54 lines (54 loc) · 1.4 KB
/
project_map.json
File metadata and controls
54 lines (54 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"root": "task",
"summary": "A thoughtful task loop for orchestrating AI agents, focusing on chain-of-thought, meta-cognition, and model rotation.",
"primary_language": "TypeScript",
"frameworks": ["Node.js", "Vitest"],
"entry_points": [
"index.ts",
"examples/simple-mind.ts",
"examples/meta-cognition.ts"
],
"tests": [
"test/",
"package.json#scripts.test"
],
"build_commands": [
"npm run build"
],
"setup_instructions": [
"Use Node.js >=20",
"npm install",
"cp .env.example .env"
],
"directories": [
{
"path": "src/",
"summary": "Core source code for the Task library, including the main engine, state management, and type definitions.",
"languages": ["TypeScript"],
"important_files": [
"index.ts",
"src/core/engine.ts",
"src/state/state.ts",
"src/types/task-state.ts"
]
},
{
"path": "examples/",
"summary": "Runnable examples demonstrating various features and use cases of the Task library.",
"languages": ["TypeScript", "JavaScript"],
"important_files": [
"simple-mind.ts",
"meta-cognition.ts"
]
},
{
"path": "test/",
"summary": "Unit and integration tests for the project, using Vitest.",
"languages": ["TypeScript"],
"important_files": [
"api.test.ts",
"mech_state.test.ts"
]
}
]
}