topchester-ai 0.25.0 → 0.27.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/agents.json +38 -0
- package/dist/cli.mjs +1188 -932
- package/dist/cli.mjs.map +1 -1
- package/package.json +3 -2
package/agents.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"agents": {
|
|
4
|
+
"topchester": {
|
|
5
|
+
"display_name": "Topchester",
|
|
6
|
+
"description": "Terminal-native coding agent with a project knowledge base as part of the runtime contract.",
|
|
7
|
+
"logo_image": "assets/agents/topchester.svg",
|
|
8
|
+
"external_url": "https://github.com/kodi/topchester-agent",
|
|
9
|
+
"source_url": "https://github.com/kodi/topchester-agent",
|
|
10
|
+
"tags": ["terminal", "coding-agent", "knowledge-base"],
|
|
11
|
+
"capabilities": ["terminal-ui", "project-knowledge-base", "tool-calling", "subagents", "hooks"],
|
|
12
|
+
"model_support": {
|
|
13
|
+
"providers": ["openrouter", "openai", "ollama"],
|
|
14
|
+
"requirements": {
|
|
15
|
+
"tool_calling": true,
|
|
16
|
+
"streaming": true
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"codex": {
|
|
21
|
+
"display_name": "Codex",
|
|
22
|
+
"description": "OpenAI coding agent for working on software projects from a terminal or agent interface.",
|
|
23
|
+
"logo_image": "assets/agents/codex.svg",
|
|
24
|
+
"external_url": "https://openai.com/codex",
|
|
25
|
+
"source_url": "https://github.com/openai/codex",
|
|
26
|
+
"tags": ["terminal", "coding-agent"],
|
|
27
|
+
"capabilities": ["tool-calling", "hooks", "mcp", "sessions"],
|
|
28
|
+
"model_support": {
|
|
29
|
+
"providers": ["openai"],
|
|
30
|
+
"requirements": {
|
|
31
|
+
"tool_calling": true,
|
|
32
|
+
"streaming": true,
|
|
33
|
+
"reasoning": true
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|