agent-devkit 0.6.0 → 0.7.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/dist/main.js +10503 -7227
- package/dist/main.js.map +1 -1
- package/package.json +1 -1
- package/src/assets/agents/profiles.json +40 -0
- package/src/assets/i18n/en-US.json +16 -0
- package/src/assets/i18n/fr-FR.json +16 -0
- package/src/assets/i18n/ja-JP.json +16 -0
- package/src/assets/i18n/pt-BR.json +16 -0
- package/src/assets/i18n/zh-CN.json +16 -0
- package/src/assets/models/cards.json +282 -0
- package/src/assets/prompts/core/chat.json +19 -4
- package/src/assets/prompts/core/compact.json +28 -0
- package/src/assets/prompts/core/intent.json +33 -0
- package/src/assets/prompts/core/review.json +33 -0
- package/src/assets/prompts/core/task-plan.json +14 -4
- package/src/modules/providers/surface/knowledge.json +10 -0
- package/src/modules/providers/surface/loop.json +15 -0
- package/src/modules/providers/surface/prompt.json +10 -0
- package/src/modules/providers/surface/skill.json +14 -0
package/package.json
CHANGED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.subagent-profiles/v1",
|
|
3
|
+
"profiles": [
|
|
4
|
+
{
|
|
5
|
+
"schema": "agent-devkit.subagent-profile/v1",
|
|
6
|
+
"id": "code-worker",
|
|
7
|
+
"toolDomains": ["project", "logs"],
|
|
8
|
+
"modelBinding": "auto",
|
|
9
|
+
"budget": { "maxSteps": 6 }
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"schema": "agent-devkit.subagent-profile/v1",
|
|
13
|
+
"id": "researcher",
|
|
14
|
+
"toolDomains": ["memory", "context"],
|
|
15
|
+
"modelBinding": "auto",
|
|
16
|
+
"budget": { "maxSteps": 6 }
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"schema": "agent-devkit.subagent-profile/v1",
|
|
20
|
+
"id": "file-scout",
|
|
21
|
+
"toolDomains": ["logs", "project"],
|
|
22
|
+
"modelBinding": "auto",
|
|
23
|
+
"budget": { "maxSteps": 4 }
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"schema": "agent-devkit.subagent-profile/v1",
|
|
27
|
+
"id": "reviewer",
|
|
28
|
+
"toolDomains": [],
|
|
29
|
+
"modelBinding": "auto",
|
|
30
|
+
"budget": { "maxSteps": 3 }
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"schema": "agent-devkit.subagent-profile/v1",
|
|
34
|
+
"id": "summarizer",
|
|
35
|
+
"toolDomains": ["context"],
|
|
36
|
+
"modelBinding": "auto",
|
|
37
|
+
"budget": { "maxSteps": 3 }
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
}
|
|
@@ -26,6 +26,15 @@
|
|
|
26
26
|
"cli.install.option.node": "use the node dependency",
|
|
27
27
|
"cli.install.option.verify": "verify the dependency instead of planning installation",
|
|
28
28
|
"cli.install.option.yes": "confirm operations that require approval",
|
|
29
|
+
"cli.login.description": "authenticate a brain provider: CLI login or API key stored in the vault",
|
|
30
|
+
"cli.login.argument.provider": "provider: claude, codex, gemini, openai, openrouter or anthropic",
|
|
31
|
+
"cli.login.option.status": "show the authentication status of every provider",
|
|
32
|
+
"cli.login.option.json": "print the result as JSON",
|
|
33
|
+
"cli.logout.description": "remove stored credentials for a provider",
|
|
34
|
+
"cli.logout.argument.provider": "provider: claude, codex, gemini, openai, openrouter or anthropic",
|
|
35
|
+
"cli.connect.description": "connect to a local provider endpoint and save its URL",
|
|
36
|
+
"cli.connect.argument.target": "connection target (supported: ollama)",
|
|
37
|
+
"cli.connect.option.url": "endpoint URL to probe and save",
|
|
29
38
|
"cli.logs.description": "list, read, search and summarize Agent DevKit usage logs",
|
|
30
39
|
"cli.logs.option.all": "include usage and technical logs",
|
|
31
40
|
"cli.logs.option.json": "print logs result as JSON",
|
|
@@ -238,6 +247,7 @@
|
|
|
238
247
|
"characters.robot.name": "Robot",
|
|
239
248
|
"characters.robot.tagline": "Technical focus",
|
|
240
249
|
"characters.robot.description": "Technical, precise and pragmatic for engineering work.",
|
|
250
|
+
"cli.runs.option.status": "queued, running, waiting-approval, completed, failed, cancelled or all",
|
|
241
251
|
"tui.title": "Agent DevKit",
|
|
242
252
|
"tui.foundation": "v0.3.5 technical foundation",
|
|
243
253
|
"tui.prompt": "Prompt: {{prompt}}",
|
|
@@ -280,10 +290,16 @@
|
|
|
280
290
|
"cli.models.use.description": "set the default local model",
|
|
281
291
|
"cli.models.use.option.agent": "set the default model for the agent role",
|
|
282
292
|
"cli.models.use.option.chat": "set the default model for the chat role",
|
|
293
|
+
"cli.models.use.option.role": "set the brain role for a provider card (agent, chat or embed)",
|
|
294
|
+
"cli.models.use.option.primary": "set the card as the global primary brain",
|
|
295
|
+
"cli.models.use.option.project": "save the preference only for this project",
|
|
296
|
+
"cli.models.use.saved": "brain preference saved: {{id}}",
|
|
283
297
|
"cli.models.argument.id": "catalog model id",
|
|
284
298
|
"cli.models.option.json": "print the result as JSON",
|
|
285
299
|
"cli.models.providers.description": "List brain providers and their availability.",
|
|
286
300
|
"cli.models.providers.option.json": "print providers as JSON",
|
|
301
|
+
"cli.models.cards.description": "List model cards from every provider with runtime status.",
|
|
302
|
+
"cli.models.cards.option.json": "print model cards as JSON",
|
|
287
303
|
"cli.firstRun.hint": "No local model installed. Run: agent models install {{id}}",
|
|
288
304
|
"cli.firstRun.prompt": "No local model installed. Install the recommended model {{id}} now? (y/N)",
|
|
289
305
|
"cli.firstRun.installed": "Model {{id}} installed and set as default.",
|
|
@@ -26,6 +26,15 @@
|
|
|
26
26
|
"cli.install.option.node": "utilise la dependance node",
|
|
27
27
|
"cli.install.option.verify": "verifie la dependance au lieu de planifier l'installation",
|
|
28
28
|
"cli.install.option.yes": "confirme les operations qui exigent une approbation",
|
|
29
|
+
"cli.login.description": "authentifier un provider de cerveau : login CLI ou clé API stockée dans le coffre",
|
|
30
|
+
"cli.login.argument.provider": "provider : claude, codex, gemini, openai, openrouter ou anthropic",
|
|
31
|
+
"cli.login.option.status": "afficher le statut d'authentification de tous les providers",
|
|
32
|
+
"cli.login.option.json": "afficher le résultat au format JSON",
|
|
33
|
+
"cli.logout.description": "supprimer les identifiants stockés d'un provider",
|
|
34
|
+
"cli.logout.argument.provider": "provider : claude, codex, gemini, openai, openrouter ou anthropic",
|
|
35
|
+
"cli.connect.description": "se connecter à un endpoint local de provider et enregistrer son URL",
|
|
36
|
+
"cli.connect.argument.target": "cible de connexion (supporté : ollama)",
|
|
37
|
+
"cli.connect.option.url": "URL de l'endpoint à tester et enregistrer",
|
|
29
38
|
"cli.logs.description": "liste, lit, cherche et resume les logs d'utilisation Agent DevKit",
|
|
30
39
|
"cli.logs.option.all": "inclut les logs d'utilisation et techniques",
|
|
31
40
|
"cli.logs.option.json": "imprime le resultat des logs en JSON",
|
|
@@ -238,6 +247,7 @@
|
|
|
238
247
|
"characters.robot.name": "Robot",
|
|
239
248
|
"characters.robot.tagline": "Focus technique",
|
|
240
249
|
"characters.robot.description": "Technique, precis et pragmatique pour l'ingenierie.",
|
|
250
|
+
"cli.runs.option.status": "queued, running, waiting-approval, completed, failed, cancelled ou all",
|
|
241
251
|
"tui.title": "Agent DevKit",
|
|
242
252
|
"tui.foundation": "v0.3.5 base technique",
|
|
243
253
|
"tui.prompt": "Prompt: {{prompt}}",
|
|
@@ -280,10 +290,16 @@
|
|
|
280
290
|
"cli.models.use.description": "definit le modele local par defaut",
|
|
281
291
|
"cli.models.use.option.agent": "definit le modele par defaut pour le role d'agent",
|
|
282
292
|
"cli.models.use.option.chat": "definit le modele par defaut pour le role de chat",
|
|
293
|
+
"cli.models.use.option.role": "definit le role du cerveau pour une carte de provider (agent, chat ou embed)",
|
|
294
|
+
"cli.models.use.option.primary": "definit la carte comme cerveau principal global",
|
|
295
|
+
"cli.models.use.option.project": "enregistre la preference uniquement pour ce projet",
|
|
296
|
+
"cli.models.use.saved": "preference de cerveau enregistree : {{id}}",
|
|
283
297
|
"cli.models.argument.id": "id du modele du catalogue",
|
|
284
298
|
"cli.models.option.json": "imprime le resultat en JSON",
|
|
285
299
|
"cli.models.providers.description": "Liste les providers de cerveau et leur disponibilité.",
|
|
286
300
|
"cli.models.providers.option.json": "affiche les providers en JSON",
|
|
301
|
+
"cli.models.cards.description": "Liste les fiches de modeles de tous les providers avec leur statut.",
|
|
302
|
+
"cli.models.cards.option.json": "affiche les fiches de modeles en JSON",
|
|
287
303
|
"cli.firstRun.hint": "Aucun modele local installe. Executez: agent models install {{id}}",
|
|
288
304
|
"cli.firstRun.prompt": "Aucun modele local installe. Installer le modele recommande {{id}} maintenant ? (y/N)",
|
|
289
305
|
"cli.firstRun.installed": "Modele {{id}} installe et defini par defaut.",
|
|
@@ -26,6 +26,15 @@
|
|
|
26
26
|
"cli.install.option.node": "node 依存関係を使う",
|
|
27
27
|
"cli.install.option.verify": "インストール計画ではなく依存関係を検証する",
|
|
28
28
|
"cli.install.option.yes": "承認が必要な操作を確認する",
|
|
29
|
+
"cli.login.description": "ブレインプロバイダーを認証します: CLIログインまたはボルトに保存するAPIキー",
|
|
30
|
+
"cli.login.argument.provider": "プロバイダー: claude、codex、gemini、openai、openrouter、anthropic",
|
|
31
|
+
"cli.login.option.status": "すべてのプロバイダーの認証状態を表示します",
|
|
32
|
+
"cli.login.option.json": "結果をJSONで出力します",
|
|
33
|
+
"cli.logout.description": "プロバイダーの保存済み認証情報を削除します",
|
|
34
|
+
"cli.logout.argument.provider": "プロバイダー: claude、codex、gemini、openai、openrouter、anthropic",
|
|
35
|
+
"cli.connect.description": "ローカルプロバイダーのエンドポイントに接続してURLを保存します",
|
|
36
|
+
"cli.connect.argument.target": "接続先 (対応: ollama)",
|
|
37
|
+
"cli.connect.option.url": "確認して保存するエンドポイントURL",
|
|
29
38
|
"cli.logs.description": "Agent DevKit 使用ログを一覧、読み取り、検索、集計する",
|
|
30
39
|
"cli.logs.option.all": "使用ログと技術ログを含める",
|
|
31
40
|
"cli.logs.option.json": "ログ結果を JSON で出力する",
|
|
@@ -238,6 +247,7 @@
|
|
|
238
247
|
"characters.robot.name": "Robot",
|
|
239
248
|
"characters.robot.tagline": "技術フォーカス",
|
|
240
249
|
"characters.robot.description": "エンジニアリング作業に向いた、技術的で正確かつ実用的なキャラクター。",
|
|
250
|
+
"cli.runs.option.status": "queued、running、waiting-approval、completed、failed、cancelled または all",
|
|
241
251
|
"tui.title": "Agent DevKit",
|
|
242
252
|
"tui.foundation": "v0.3.5 技術基盤",
|
|
243
253
|
"tui.prompt": "プロンプト: {{prompt}}",
|
|
@@ -280,10 +290,16 @@
|
|
|
280
290
|
"cli.models.use.description": "デフォルトのローカルモデルを設定します",
|
|
281
291
|
"cli.models.use.option.agent": "エージェント役割のデフォルトモデルを設定します",
|
|
282
292
|
"cli.models.use.option.chat": "チャット役割のデフォルトモデルを設定します",
|
|
293
|
+
"cli.models.use.option.role": "プロバイダーカードのブレイン役割を設定します(agent、chat、embed)",
|
|
294
|
+
"cli.models.use.option.primary": "このカードをグローバルの主要ブレインに設定します",
|
|
295
|
+
"cli.models.use.option.project": "このプロジェクトだけに設定を保存します",
|
|
296
|
+
"cli.models.use.saved": "ブレイン設定を保存しました: {{id}}",
|
|
283
297
|
"cli.models.argument.id": "カタログモデル id",
|
|
284
298
|
"cli.models.option.json": "結果を JSON で出力します",
|
|
285
299
|
"cli.models.providers.description": "ブレインプロバイダーと利用可否を一覧表示します。",
|
|
286
300
|
"cli.models.providers.option.json": "プロバイダーをJSONで出力",
|
|
301
|
+
"cli.models.cards.description": "全プロバイダーのモデルカードとステータスを一覧表示します。",
|
|
302
|
+
"cli.models.cards.option.json": "モデルカードをJSONで出力",
|
|
287
303
|
"cli.firstRun.hint": "ローカルモデルが未インストールです。実行: agent models install {{id}}",
|
|
288
304
|
"cli.firstRun.prompt": "ローカルモデルが未インストールです。推奨モデル {{id}} を今インストールしますか?(y/N)",
|
|
289
305
|
"cli.firstRun.installed": "モデル {{id}} をインストールし、デフォルトに設定しました。",
|
|
@@ -26,6 +26,15 @@
|
|
|
26
26
|
"cli.install.option.node": "usa a dependencia node",
|
|
27
27
|
"cli.install.option.verify": "verifica a dependencia em vez de planejar instalacao",
|
|
28
28
|
"cli.install.option.yes": "confirma operacoes que exigem aprovacao",
|
|
29
|
+
"cli.login.description": "autenticar um provider de cérebro: login via CLI ou API key guardada no vault",
|
|
30
|
+
"cli.login.argument.provider": "provider: claude, codex, gemini, openai, openrouter ou anthropic",
|
|
31
|
+
"cli.login.option.status": "mostrar o status de autenticação de todos os providers",
|
|
32
|
+
"cli.login.option.json": "imprimir o resultado como JSON",
|
|
33
|
+
"cli.logout.description": "remover as credenciais guardadas de um provider",
|
|
34
|
+
"cli.logout.argument.provider": "provider: claude, codex, gemini, openai, openrouter ou anthropic",
|
|
35
|
+
"cli.connect.description": "conectar a um endpoint local de provider e salvar a URL",
|
|
36
|
+
"cli.connect.argument.target": "alvo da conexão (suportado: ollama)",
|
|
37
|
+
"cli.connect.option.url": "URL do endpoint para testar e salvar",
|
|
29
38
|
"cli.logs.description": "lista, le, busca e resume logs de uso do Agent DevKit",
|
|
30
39
|
"cli.logs.option.all": "inclui logs de uso e tecnicos",
|
|
31
40
|
"cli.logs.option.json": "imprime resultado dos logs como JSON",
|
|
@@ -238,6 +247,7 @@
|
|
|
238
247
|
"characters.robot.name": "Robot",
|
|
239
248
|
"characters.robot.tagline": "Foco tecnico",
|
|
240
249
|
"characters.robot.description": "Tecnico, preciso e pragmatico para tarefas de engenharia.",
|
|
250
|
+
"cli.runs.option.status": "queued, running, waiting-approval, completed, failed, cancelled ou all",
|
|
241
251
|
"tui.title": "Agent DevKit",
|
|
242
252
|
"tui.foundation": "v0.3.5 base tecnica",
|
|
243
253
|
"tui.prompt": "Prompt: {{prompt}}",
|
|
@@ -280,10 +290,16 @@
|
|
|
280
290
|
"cli.models.use.description": "define o modelo local padrao",
|
|
281
291
|
"cli.models.use.option.agent": "define o modelo padrao do papel de agente",
|
|
282
292
|
"cli.models.use.option.chat": "define o modelo padrao do papel de chat",
|
|
293
|
+
"cli.models.use.option.role": "define o papel do cerebro para um card de provider (agent, chat ou embed)",
|
|
294
|
+
"cli.models.use.option.primary": "define o card como cerebro principal global",
|
|
295
|
+
"cli.models.use.option.project": "salva a preferencia apenas para este projeto",
|
|
296
|
+
"cli.models.use.saved": "preferencia de cerebro salva: {{id}}",
|
|
283
297
|
"cli.models.argument.id": "id do modelo do catalogo",
|
|
284
298
|
"cli.models.option.json": "imprime o resultado como JSON",
|
|
285
299
|
"cli.models.providers.description": "Lista os providers de cérebro e a disponibilidade de cada um.",
|
|
286
300
|
"cli.models.providers.option.json": "imprime providers em JSON",
|
|
301
|
+
"cli.models.cards.description": "Lista as fichas de modelos de todos os providers com status.",
|
|
302
|
+
"cli.models.cards.option.json": "imprime as fichas de modelos em JSON",
|
|
287
303
|
"cli.firstRun.hint": "Nenhum modelo local instalado. Rode: agent models install {{id}}",
|
|
288
304
|
"cli.firstRun.prompt": "Nenhum modelo local instalado. Deseja instalar o modelo recomendado {{id}} agora? (s/N)",
|
|
289
305
|
"cli.firstRun.installed": "Modelo {{id}} instalado e definido como padrao.",
|
|
@@ -26,6 +26,15 @@
|
|
|
26
26
|
"cli.install.option.node": "使用 node 依赖",
|
|
27
27
|
"cli.install.option.verify": "验证依赖而不是计划安装",
|
|
28
28
|
"cli.install.option.yes": "确认需要批准的操作",
|
|
29
|
+
"cli.login.description": "认证大脑 provider:CLI 登录或存入保险库的 API 密钥",
|
|
30
|
+
"cli.login.argument.provider": "provider:claude、codex、gemini、openai、openrouter 或 anthropic",
|
|
31
|
+
"cli.login.option.status": "显示所有 provider 的认证状态",
|
|
32
|
+
"cli.login.option.json": "以 JSON 格式输出结果",
|
|
33
|
+
"cli.logout.description": "删除 provider 已保存的凭据",
|
|
34
|
+
"cli.logout.argument.provider": "provider:claude、codex、gemini、openai、openrouter 或 anthropic",
|
|
35
|
+
"cli.connect.description": "连接本地 provider 端点并保存其 URL",
|
|
36
|
+
"cli.connect.argument.target": "连接目标(支持:ollama)",
|
|
37
|
+
"cli.connect.option.url": "要探测并保存的端点 URL",
|
|
29
38
|
"cli.logs.description": "列出、读取、搜索并汇总 Agent DevKit 使用日志",
|
|
30
39
|
"cli.logs.option.all": "包含使用日志和技术日志",
|
|
31
40
|
"cli.logs.option.json": "以 JSON 输出日志结果",
|
|
@@ -238,6 +247,7 @@
|
|
|
238
247
|
"characters.robot.name": "Robot",
|
|
239
248
|
"characters.robot.tagline": "技术专注",
|
|
240
249
|
"characters.robot.description": "技术、精确、务实,适合工程工作。",
|
|
250
|
+
"cli.runs.option.status": "queued、running、waiting-approval、completed、failed、cancelled 或 all",
|
|
241
251
|
"tui.title": "Agent DevKit",
|
|
242
252
|
"tui.foundation": "v0.3.5 技术基础",
|
|
243
253
|
"tui.prompt": "提示: {{prompt}}",
|
|
@@ -280,10 +290,16 @@
|
|
|
280
290
|
"cli.models.use.description": "设置默认本地模型",
|
|
281
291
|
"cli.models.use.option.agent": "设置智能体角色的默认模型",
|
|
282
292
|
"cli.models.use.option.chat": "设置聊天角色的默认模型",
|
|
293
|
+
"cli.models.use.option.role": "为提供方模型卡设置大脑角色(agent、chat 或 embed)",
|
|
294
|
+
"cli.models.use.option.primary": "将该模型卡设为全局主大脑",
|
|
295
|
+
"cli.models.use.option.project": "仅为当前项目保存该偏好",
|
|
296
|
+
"cli.models.use.saved": "大脑偏好已保存:{{id}}",
|
|
283
297
|
"cli.models.argument.id": "目录模型 id",
|
|
284
298
|
"cli.models.option.json": "以 JSON 输出结果",
|
|
285
299
|
"cli.models.providers.description": "列出大脑提供方及其可用状态。",
|
|
286
300
|
"cli.models.providers.option.json": "以JSON输出提供方",
|
|
301
|
+
"cli.models.cards.description": "列出所有提供方的模型卡片及其状态。",
|
|
302
|
+
"cli.models.cards.option.json": "以JSON输出模型卡片",
|
|
287
303
|
"cli.firstRun.hint": "未安装本地模型。运行: agent models install {{id}}",
|
|
288
304
|
"cli.firstRun.prompt": "未安装本地模型。现在安装推荐模型 {{id}} 吗?(y/N)",
|
|
289
305
|
"cli.firstRun.installed": "模型 {{id}} 已安装并设为默认。",
|
|
@@ -0,0 +1,282 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.model-cards/v1",
|
|
3
|
+
"cards": [
|
|
4
|
+
{
|
|
5
|
+
"schema": "agent-devkit.model-card/v1",
|
|
6
|
+
"id": "claude-cli:opus",
|
|
7
|
+
"provider": "claude-cli",
|
|
8
|
+
"family": "claude",
|
|
9
|
+
"displayName": "Claude Opus",
|
|
10
|
+
"tier": "reasoning",
|
|
11
|
+
"capabilities": {
|
|
12
|
+
"embeddings": false,
|
|
13
|
+
"stream": false,
|
|
14
|
+
"structured": false,
|
|
15
|
+
"vision": false
|
|
16
|
+
},
|
|
17
|
+
"contextWindow": 200000,
|
|
18
|
+
"cost": { "kind": "subscription", "relative": 5 },
|
|
19
|
+
"speed": { "relative": 2 },
|
|
20
|
+
"recommendedFor": ["plan", "review"]
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"schema": "agent-devkit.model-card/v1",
|
|
24
|
+
"id": "claude-cli:sonnet",
|
|
25
|
+
"provider": "claude-cli",
|
|
26
|
+
"family": "claude",
|
|
27
|
+
"displayName": "Claude Sonnet",
|
|
28
|
+
"tier": "balanced",
|
|
29
|
+
"capabilities": {
|
|
30
|
+
"embeddings": false,
|
|
31
|
+
"stream": false,
|
|
32
|
+
"structured": false,
|
|
33
|
+
"vision": false
|
|
34
|
+
},
|
|
35
|
+
"contextWindow": 200000,
|
|
36
|
+
"cost": { "kind": "subscription", "relative": 3 },
|
|
37
|
+
"speed": { "relative": 3 },
|
|
38
|
+
"recommendedFor": ["code", "chat", "review"],
|
|
39
|
+
"bestOfFamily": true
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"schema": "agent-devkit.model-card/v1",
|
|
43
|
+
"id": "claude-cli:haiku",
|
|
44
|
+
"provider": "claude-cli",
|
|
45
|
+
"family": "claude",
|
|
46
|
+
"displayName": "Claude Haiku",
|
|
47
|
+
"tier": "fast",
|
|
48
|
+
"capabilities": {
|
|
49
|
+
"embeddings": false,
|
|
50
|
+
"stream": false,
|
|
51
|
+
"structured": false,
|
|
52
|
+
"vision": false
|
|
53
|
+
},
|
|
54
|
+
"contextWindow": 200000,
|
|
55
|
+
"cost": { "kind": "subscription", "relative": 1 },
|
|
56
|
+
"speed": { "relative": 5 },
|
|
57
|
+
"recommendedFor": ["summarize", "tool-input"]
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"schema": "agent-devkit.model-card/v1",
|
|
61
|
+
"id": "codex-cli:gpt-5.1-codex-max",
|
|
62
|
+
"provider": "codex-cli",
|
|
63
|
+
"family": "gpt",
|
|
64
|
+
"displayName": "GPT-5.1 Codex Max",
|
|
65
|
+
"tier": "reasoning",
|
|
66
|
+
"capabilities": {
|
|
67
|
+
"embeddings": false,
|
|
68
|
+
"stream": false,
|
|
69
|
+
"structured": false,
|
|
70
|
+
"vision": false
|
|
71
|
+
},
|
|
72
|
+
"contextWindow": 400000,
|
|
73
|
+
"cost": { "kind": "subscription", "relative": 5 },
|
|
74
|
+
"speed": { "relative": 2 },
|
|
75
|
+
"recommendedFor": ["plan", "review"]
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"schema": "agent-devkit.model-card/v1",
|
|
79
|
+
"id": "codex-cli:gpt-5.1-codex",
|
|
80
|
+
"provider": "codex-cli",
|
|
81
|
+
"family": "gpt",
|
|
82
|
+
"displayName": "GPT-5.1 Codex",
|
|
83
|
+
"tier": "balanced",
|
|
84
|
+
"capabilities": {
|
|
85
|
+
"embeddings": false,
|
|
86
|
+
"stream": false,
|
|
87
|
+
"structured": false,
|
|
88
|
+
"vision": false
|
|
89
|
+
},
|
|
90
|
+
"contextWindow": 400000,
|
|
91
|
+
"cost": { "kind": "subscription", "relative": 3 },
|
|
92
|
+
"speed": { "relative": 3 },
|
|
93
|
+
"recommendedFor": ["code", "chat"],
|
|
94
|
+
"bestOfFamily": true
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"schema": "agent-devkit.model-card/v1",
|
|
98
|
+
"id": "codex-cli:gpt-5.1-codex-mini",
|
|
99
|
+
"provider": "codex-cli",
|
|
100
|
+
"family": "gpt",
|
|
101
|
+
"displayName": "GPT-5.1 Codex Mini",
|
|
102
|
+
"tier": "fast",
|
|
103
|
+
"capabilities": {
|
|
104
|
+
"embeddings": false,
|
|
105
|
+
"stream": false,
|
|
106
|
+
"structured": false,
|
|
107
|
+
"vision": false
|
|
108
|
+
},
|
|
109
|
+
"contextWindow": 400000,
|
|
110
|
+
"cost": { "kind": "subscription", "relative": 1 },
|
|
111
|
+
"speed": { "relative": 5 },
|
|
112
|
+
"recommendedFor": ["summarize", "tool-input"]
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"schema": "agent-devkit.model-card/v1",
|
|
116
|
+
"id": "gemini-cli:gemini-2.5-pro",
|
|
117
|
+
"provider": "gemini-cli",
|
|
118
|
+
"family": "gemini",
|
|
119
|
+
"displayName": "Gemini 2.5 Pro",
|
|
120
|
+
"tier": "reasoning",
|
|
121
|
+
"capabilities": {
|
|
122
|
+
"embeddings": false,
|
|
123
|
+
"stream": false,
|
|
124
|
+
"structured": false,
|
|
125
|
+
"vision": false
|
|
126
|
+
},
|
|
127
|
+
"contextWindow": 1000000,
|
|
128
|
+
"cost": { "kind": "subscription", "relative": 4 },
|
|
129
|
+
"speed": { "relative": 2 },
|
|
130
|
+
"recommendedFor": ["plan", "review"]
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"schema": "agent-devkit.model-card/v1",
|
|
134
|
+
"id": "gemini-cli:gemini-2.5-flash",
|
|
135
|
+
"provider": "gemini-cli",
|
|
136
|
+
"family": "gemini",
|
|
137
|
+
"displayName": "Gemini 2.5 Flash",
|
|
138
|
+
"tier": "balanced",
|
|
139
|
+
"capabilities": {
|
|
140
|
+
"embeddings": false,
|
|
141
|
+
"stream": false,
|
|
142
|
+
"structured": false,
|
|
143
|
+
"vision": false
|
|
144
|
+
},
|
|
145
|
+
"contextWindow": 1000000,
|
|
146
|
+
"cost": { "kind": "subscription", "relative": 2 },
|
|
147
|
+
"speed": { "relative": 4 },
|
|
148
|
+
"recommendedFor": ["code", "chat"],
|
|
149
|
+
"bestOfFamily": true
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"schema": "agent-devkit.model-card/v1",
|
|
153
|
+
"id": "gemini-cli:gemini-2.5-flash-lite",
|
|
154
|
+
"provider": "gemini-cli",
|
|
155
|
+
"family": "gemini",
|
|
156
|
+
"displayName": "Gemini 2.5 Flash Lite",
|
|
157
|
+
"tier": "fast",
|
|
158
|
+
"capabilities": {
|
|
159
|
+
"embeddings": false,
|
|
160
|
+
"stream": false,
|
|
161
|
+
"structured": false,
|
|
162
|
+
"vision": false
|
|
163
|
+
},
|
|
164
|
+
"contextWindow": 1000000,
|
|
165
|
+
"cost": { "kind": "subscription", "relative": 1 },
|
|
166
|
+
"speed": { "relative": 5 },
|
|
167
|
+
"recommendedFor": ["summarize", "tool-input"]
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"schema": "agent-devkit.model-card/v1",
|
|
171
|
+
"id": "anthropic:claude-opus-4-5",
|
|
172
|
+
"provider": "anthropic",
|
|
173
|
+
"family": "claude",
|
|
174
|
+
"displayName": "Claude Opus 4.5 (API)",
|
|
175
|
+
"tier": "reasoning",
|
|
176
|
+
"capabilities": {
|
|
177
|
+
"embeddings": false,
|
|
178
|
+
"stream": true,
|
|
179
|
+
"structured": true,
|
|
180
|
+
"vision": true
|
|
181
|
+
},
|
|
182
|
+
"contextWindow": 200000,
|
|
183
|
+
"cost": { "kind": "per-token", "relative": 5 },
|
|
184
|
+
"speed": { "relative": 2 },
|
|
185
|
+
"recommendedFor": ["plan", "review"]
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"schema": "agent-devkit.model-card/v1",
|
|
189
|
+
"id": "anthropic:claude-sonnet-4-5",
|
|
190
|
+
"provider": "anthropic",
|
|
191
|
+
"family": "claude",
|
|
192
|
+
"displayName": "Claude Sonnet 4.5 (API)",
|
|
193
|
+
"tier": "balanced",
|
|
194
|
+
"capabilities": {
|
|
195
|
+
"embeddings": false,
|
|
196
|
+
"stream": true,
|
|
197
|
+
"structured": true,
|
|
198
|
+
"vision": true
|
|
199
|
+
},
|
|
200
|
+
"contextWindow": 200000,
|
|
201
|
+
"cost": { "kind": "per-token", "relative": 3 },
|
|
202
|
+
"speed": { "relative": 3 },
|
|
203
|
+
"recommendedFor": ["code", "chat"],
|
|
204
|
+
"bestOfFamily": true
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"schema": "agent-devkit.model-card/v1",
|
|
208
|
+
"id": "openai:gpt-5.1",
|
|
209
|
+
"provider": "openai",
|
|
210
|
+
"family": "gpt",
|
|
211
|
+
"displayName": "GPT-5.1 (API)",
|
|
212
|
+
"tier": "balanced",
|
|
213
|
+
"capabilities": {
|
|
214
|
+
"embeddings": false,
|
|
215
|
+
"stream": true,
|
|
216
|
+
"structured": true,
|
|
217
|
+
"vision": true
|
|
218
|
+
},
|
|
219
|
+
"contextWindow": 400000,
|
|
220
|
+
"cost": { "kind": "per-token", "relative": 3 },
|
|
221
|
+
"speed": { "relative": 3 },
|
|
222
|
+
"recommendedFor": ["code", "chat"],
|
|
223
|
+
"bestOfFamily": true
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"schema": "agent-devkit.model-card/v1",
|
|
227
|
+
"id": "openai:gpt-5.1-mini",
|
|
228
|
+
"provider": "openai",
|
|
229
|
+
"family": "gpt",
|
|
230
|
+
"displayName": "GPT-5.1 Mini (API)",
|
|
231
|
+
"tier": "fast",
|
|
232
|
+
"capabilities": {
|
|
233
|
+
"embeddings": false,
|
|
234
|
+
"stream": true,
|
|
235
|
+
"structured": true,
|
|
236
|
+
"vision": true
|
|
237
|
+
},
|
|
238
|
+
"contextWindow": 400000,
|
|
239
|
+
"cost": { "kind": "per-token", "relative": 1 },
|
|
240
|
+
"speed": { "relative": 5 },
|
|
241
|
+
"recommendedFor": ["summarize", "tool-input"]
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"schema": "agent-devkit.model-card/v1",
|
|
245
|
+
"id": "openrouter:anthropic/claude-sonnet-4.5",
|
|
246
|
+
"provider": "openrouter",
|
|
247
|
+
"family": "claude",
|
|
248
|
+
"displayName": "Claude Sonnet 4.5 (OpenRouter)",
|
|
249
|
+
"tier": "balanced",
|
|
250
|
+
"capabilities": {
|
|
251
|
+
"embeddings": false,
|
|
252
|
+
"stream": true,
|
|
253
|
+
"structured": true,
|
|
254
|
+
"vision": true
|
|
255
|
+
},
|
|
256
|
+
"contextWindow": 200000,
|
|
257
|
+
"cost": { "kind": "per-token", "relative": 3 },
|
|
258
|
+
"speed": { "relative": 3 },
|
|
259
|
+
"recommendedFor": ["code", "chat"],
|
|
260
|
+
"bestOfFamily": true
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"schema": "agent-devkit.model-card/v1",
|
|
264
|
+
"id": "openrouter:qwen/qwen3-coder",
|
|
265
|
+
"provider": "openrouter",
|
|
266
|
+
"family": "qwen",
|
|
267
|
+
"displayName": "Qwen3 Coder (OpenRouter)",
|
|
268
|
+
"tier": "fast",
|
|
269
|
+
"capabilities": {
|
|
270
|
+
"embeddings": false,
|
|
271
|
+
"stream": true,
|
|
272
|
+
"structured": true,
|
|
273
|
+
"vision": false
|
|
274
|
+
},
|
|
275
|
+
"contextWindow": 262144,
|
|
276
|
+
"cost": { "kind": "per-token", "relative": 2 },
|
|
277
|
+
"speed": { "relative": 4 },
|
|
278
|
+
"recommendedFor": ["code", "summarize"],
|
|
279
|
+
"bestOfFamily": true
|
|
280
|
+
}
|
|
281
|
+
]
|
|
282
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema": "agent-devkit.prompt-pack/v1",
|
|
3
3
|
"id": "core/chat",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.1.0",
|
|
5
5
|
"description": "Stateful chat prompt for the configured Agent DevKit personality.",
|
|
6
6
|
"locale": "pt-BR",
|
|
7
7
|
"output": {
|
|
8
8
|
"format": "text",
|
|
9
|
-
"language": "
|
|
9
|
+
"language": "auto"
|
|
10
10
|
},
|
|
11
11
|
"policies": {
|
|
12
12
|
"allowToolCalls": false,
|
|
@@ -14,6 +14,21 @@
|
|
|
14
14
|
"maxToolCalls": 0
|
|
15
15
|
},
|
|
16
16
|
"knowledge": [
|
|
17
|
+
{
|
|
18
|
+
"id": "agent-devkit.direct-answer-style",
|
|
19
|
+
"source": "core/chat",
|
|
20
|
+
"content": "Answer the way a person would: direct, natural and concise. Lead with the answer itself. Never restate or paraphrase the user's request back to them. Never narrate your reasoning or thought process (no 'the user wants...', 'let me be honest', 'I need to remember that...'). Never describe your own mode, configuration or internal rules unless the user explicitly asks."
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"id": "agent-devkit.no-filler-rule",
|
|
24
|
+
"source": "core/chat",
|
|
25
|
+
"content": "Skip filler openings and closings. Do not start with praise of the question or the request. Do not end with generic offers of more help unless a concrete follow-up genuinely exists."
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"id": "agent-devkit.language-match-rule",
|
|
29
|
+
"source": "core/chat",
|
|
30
|
+
"content": "Always reply in the language of the user's current message, even if it differs from the configured locale. If the user writes in English, reply in English; Portuguese, reply in Portuguese. Do not comment on the language switch."
|
|
31
|
+
},
|
|
17
32
|
{
|
|
18
33
|
"id": "agent-devkit.identity",
|
|
19
34
|
"source": "core/chat",
|
|
@@ -30,9 +45,9 @@
|
|
|
30
45
|
"content": "Only describe Agent DevKit internals, modules, tools, MCP, CLI commands or project capabilities when the user explicitly asks about Agent DevKit, the project, tools, commands, MCP or capabilities."
|
|
31
46
|
},
|
|
32
47
|
{
|
|
33
|
-
"id": "agent-devkit.
|
|
48
|
+
"id": "agent-devkit.honesty-rule",
|
|
34
49
|
"source": "core/chat",
|
|
35
|
-
"content": "
|
|
50
|
+
"content": "Never claim to have executed an action you did not execute in this turn. If something could not be done, say so in one short sentence and offer the next step."
|
|
36
51
|
},
|
|
37
52
|
{
|
|
38
53
|
"id": "agent-devkit.capability-map",
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.prompt-pack/v1",
|
|
3
|
+
"id": "core/compact",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"description": "Compacts a long conversation into a dense summary that can replace the history in a fresh context window.",
|
|
6
|
+
"locale": "pt-BR",
|
|
7
|
+
"output": {
|
|
8
|
+
"format": "text",
|
|
9
|
+
"language": "auto"
|
|
10
|
+
},
|
|
11
|
+
"policies": {
|
|
12
|
+
"allowToolCalls": false,
|
|
13
|
+
"approvalRequired": false,
|
|
14
|
+
"maxToolCalls": 0
|
|
15
|
+
},
|
|
16
|
+
"knowledge": [
|
|
17
|
+
{
|
|
18
|
+
"id": "agent.compact.rule",
|
|
19
|
+
"source": "core/compact",
|
|
20
|
+
"content": "You are compacting a conversation to free context. Produce a dense, factual summary that preserves: user goals and decisions, facts and preferences the user stated, unfinished tasks and their exact state, names, paths, ids and numbers mentioned, and commitments the assistant made. Do not include pleasantries or meta commentary. Write in the conversation's language."
|
|
21
|
+
}
|
|
22
|
+
],
|
|
23
|
+
"task": {
|
|
24
|
+
"intent": "context-compaction",
|
|
25
|
+
"userMessage": "Compacte a conversa abaixo em um resumo denso (no maximo ~20 linhas), preservando fatos, decisoes, pendencias e identificadores exatos.\n\n{{transcript}}",
|
|
26
|
+
"variables": ["transcript"]
|
|
27
|
+
}
|
|
28
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.prompt-pack/v1",
|
|
3
|
+
"id": "core/intent",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"description": "Classifies a user message as conversation (chat) or an action request (task) so the runtime can route it.",
|
|
6
|
+
"locale": "pt-BR",
|
|
7
|
+
"output": {
|
|
8
|
+
"format": "json",
|
|
9
|
+
"language": "pt-BR"
|
|
10
|
+
},
|
|
11
|
+
"policies": {
|
|
12
|
+
"allowToolCalls": false,
|
|
13
|
+
"approvalRequired": false,
|
|
14
|
+
"maxToolCalls": 0
|
|
15
|
+
},
|
|
16
|
+
"knowledge": [
|
|
17
|
+
{
|
|
18
|
+
"id": "agent.intent.rule",
|
|
19
|
+
"source": "core/intent",
|
|
20
|
+
"content": "task = the user asks the agent to DO or CHANGE something: rename or configure the agent, create/update/delete local state, run diagnostics, install models, manage sessions/projects/preferences/secrets, analyze files or logs, execute any capability. chat = questions, explanations, opinions, small talk, or requests for information that need no tool."
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"id": "agent.intent.bias",
|
|
24
|
+
"source": "core/intent",
|
|
25
|
+
"content": "When genuinely ambiguous, prefer chat. Greetings and questions about the agent itself are chat."
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
"task": {
|
|
29
|
+
"intent": "intent-routing",
|
|
30
|
+
"userMessage": "Mensagem do usuario: {{message}}\n\nClassifique a mensagem. Responda SOMENTE com JSON: {\"intent\":\"chat\"} ou {\"intent\":\"task\"}.",
|
|
31
|
+
"variables": ["message"]
|
|
32
|
+
}
|
|
33
|
+
}
|