agent-devkit 0.8.3 → 0.8.9
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 +91 -2
- package/dist/main.js +30542 -18018
- package/dist/main.js.map +1 -1
- package/package.json +3 -1
- package/src/assets/agents/profiles.json +5 -5
- package/src/assets/automations/document-template/automation.json +64 -0
- package/src/assets/automations/document-template/payloads/v1/document.md +14 -0
- package/src/assets/automations/document-template/payloads/v1/notes.md +3 -0
- package/src/assets/automations/document-template/readme.md +5 -0
- package/src/assets/automations/document-template/skill.md +39 -0
- package/src/assets/automations/http-health-check/automation.json +61 -0
- package/src/assets/automations/http-health-check/payloads/request.json +4 -0
- package/src/assets/automations/http-health-check/readme.md +5 -0
- package/src/assets/automations/http-health-check/skill.md +39 -0
- package/src/assets/i18n/en-US.json +35 -1
- package/src/assets/i18n/fr-FR.json +35 -1
- package/src/assets/i18n/ja-JP.json +35 -1
- package/src/assets/i18n/pt-BR.json +35 -1
- package/src/assets/i18n/zh-CN.json +35 -1
- package/src/assets/mcp/anthropic.json +27 -0
- package/src/assets/mcp/aws.json +40 -0
- package/src/assets/mcp/azure.json +27 -0
- package/src/assets/mcp/bigquery.json +27 -0
- package/src/assets/mcp/bitbucket.json +27 -0
- package/src/assets/mcp/cloudflare.json +27 -0
- package/src/assets/mcp/confluence.json +27 -0
- package/src/assets/mcp/context7.json +14 -0
- package/src/assets/mcp/discord.json +27 -0
- package/src/assets/mcp/docker.json +27 -0
- package/src/assets/mcp/elasticsearch.json +27 -0
- package/src/assets/mcp/filesystem.json +20 -0
- package/src/assets/mcp/firebase.json +27 -0
- package/src/assets/mcp/gcp.json +27 -0
- package/src/assets/mcp/git.json +20 -0
- package/src/assets/mcp/github.json +21 -0
- package/src/assets/mcp/gitlab.json +21 -0
- package/src/assets/mcp/google-drive.json +21 -0
- package/src/assets/mcp/hubspot.json +27 -0
- package/src/assets/mcp/jira.json +27 -0
- package/src/assets/mcp/kubernetes.json +21 -0
- package/src/assets/mcp/linear.json +27 -0
- package/src/assets/mcp/memory.json +14 -0
- package/src/assets/mcp/microsoft-365.json +27 -0
- package/src/assets/mcp/mongodb.json +27 -0
- package/src/assets/mcp/mysql.json +27 -0
- package/src/assets/mcp/neon.json +27 -0
- package/src/assets/mcp/netlify.json +27 -0
- package/src/assets/mcp/notion.json +27 -0
- package/src/assets/mcp/ollama.json +20 -0
- package/src/assets/mcp/openai.json +27 -0
- package/src/assets/mcp/openrouter.json +27 -0
- package/src/assets/mcp/outlook.json +27 -0
- package/src/assets/mcp/playwright.json +14 -0
- package/src/assets/mcp/postgres.json +14 -0
- package/src/assets/mcp/railway.json +27 -0
- package/src/assets/mcp/redis.json +27 -0
- package/src/assets/mcp/render.json +27 -0
- package/src/assets/mcp/salesforce.json +27 -0
- package/src/assets/mcp/sentry.json +21 -0
- package/src/assets/mcp/sequential-thinking.json +14 -0
- package/src/assets/mcp/sharepoint.json +27 -0
- package/src/assets/mcp/shopify.json +27 -0
- package/src/assets/mcp/slack.json +27 -0
- package/src/assets/mcp/snowflake.json +27 -0
- package/src/assets/mcp/stripe.json +21 -0
- package/src/assets/mcp/supabase.json +27 -0
- package/src/assets/mcp/teams.json +27 -0
- package/src/assets/mcp/terraform.json +14 -0
- package/src/assets/mcp/vercel.json +27 -0
- package/src/assets/prompts/core/chat.json +1 -1
- package/src/assets/prompts/core/tool-decision.json +10 -0
- package/src/assets/runtime/terminal-session-runner.cjs +13 -7
- package/src/assets/scaffolds/angular-app.json +18 -0
- package/src/assets/scaffolds/dart-cli.json +17 -0
- package/src/assets/scaffolds/django-app.json +19 -0
- package/src/assets/scaffolds/dotnet-console.json +16 -0
- package/src/assets/scaffolds/dotnet-webapi.json +17 -0
- package/src/assets/scaffolds/express-api.json +22 -0
- package/src/assets/scaffolds/flutter-app.json +17 -0
- package/src/assets/scaffolds/go-api.json +20 -0
- package/src/assets/scaffolds/laravel-app.json +15 -0
- package/src/assets/scaffolds/nestjs-api.json +21 -0
- package/src/assets/scaffolds/next-app.json +29 -0
- package/src/assets/scaffolds/node-cli.json +21 -0
- package/src/assets/scaffolds/python-fastapi.json +24 -0
- package/src/assets/scaffolds/rails-app.json +15 -0
- package/src/assets/scaffolds/react-native-expo.json +16 -0
- package/src/assets/scaffolds/react-vite.json +23 -0
- package/src/assets/scaffolds/rust-cli.json +16 -0
- package/src/modules/automations/surface/knowledge.json +11 -0
- package/src/modules/automations/surface/loop.json +18 -0
- package/src/modules/automations/surface/prompt.json +20 -0
- package/src/modules/automations/surface/skill.json +17 -0
- package/src/modules/background/surface/knowledge.json +11 -0
- package/src/modules/background/surface/loop.json +18 -0
- package/src/modules/background/surface/prompt.json +20 -0
- package/src/modules/background/surface/skill.json +16 -0
- package/src/modules/environment/surface/knowledge.json +12 -2
- package/src/modules/environment/surface/prompt.json +36 -1
- package/src/modules/environment/surface/skill.json +8 -1
- package/src/modules/integrations/surface/knowledge.json +4 -0
- package/src/modules/integrations/surface/prompt.json +1 -1
- package/src/modules/integrations/surface/skill.json +4 -0
- package/src/modules/project/surface/knowledge.json +5 -2
- package/src/modules/project/surface/prompt.json +5 -0
- package/src/modules/project/surface/skill.json +6 -3
- package/src/modules/runtime/surface/knowledge.json +1 -0
- package/src/modules/runtime/surface/prompt.json +5 -0
- package/src/assets/prompts/core/intent.json +0 -33
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-devkit",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.9",
|
|
4
4
|
"description": "Agent DevKit CLI and TUI runtime for specialist AI agents, capabilities and provider-aware workflows.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|
|
29
29
|
"build": "tsup",
|
|
30
|
+
"bench:memory": "tsx scripts/bench-memory-retrieval.ts",
|
|
30
31
|
"check:fast": "npm run typecheck && npm run lint && npm run test:modules:changed",
|
|
31
32
|
"check": "npm run typecheck && npm run lint && npm run test && npm run build && npm run package:verify",
|
|
32
33
|
"clean": "node scripts/clean.mjs",
|
|
@@ -60,6 +61,7 @@
|
|
|
60
61
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
61
62
|
"commander": "^15.0.0",
|
|
62
63
|
"ink": "^7.1.0",
|
|
64
|
+
"marked": "^18.0.5",
|
|
63
65
|
"react": "^19.2.7",
|
|
64
66
|
"zod": "^4.4.3"
|
|
65
67
|
},
|
|
@@ -4,35 +4,35 @@
|
|
|
4
4
|
{
|
|
5
5
|
"schema": "agent-devkit.subagent-profile/v1",
|
|
6
6
|
"id": "code-worker",
|
|
7
|
-
"toolDomains": ["project", "logs"],
|
|
7
|
+
"toolDomains": ["environment", "project", "context", "logs"],
|
|
8
8
|
"modelBinding": "auto",
|
|
9
9
|
"budget": { "maxSteps": 6 }
|
|
10
10
|
},
|
|
11
11
|
{
|
|
12
12
|
"schema": "agent-devkit.subagent-profile/v1",
|
|
13
13
|
"id": "researcher",
|
|
14
|
-
"toolDomains": ["memory", "context"],
|
|
14
|
+
"toolDomains": ["memory", "context", "environment"],
|
|
15
15
|
"modelBinding": "auto",
|
|
16
16
|
"budget": { "maxSteps": 6 }
|
|
17
17
|
},
|
|
18
18
|
{
|
|
19
19
|
"schema": "agent-devkit.subagent-profile/v1",
|
|
20
20
|
"id": "file-scout",
|
|
21
|
-
"toolDomains": ["logs", "project"],
|
|
21
|
+
"toolDomains": ["environment", "logs", "project", "context"],
|
|
22
22
|
"modelBinding": "auto",
|
|
23
23
|
"budget": { "maxSteps": 4 }
|
|
24
24
|
},
|
|
25
25
|
{
|
|
26
26
|
"schema": "agent-devkit.subagent-profile/v1",
|
|
27
27
|
"id": "reviewer",
|
|
28
|
-
"toolDomains": [],
|
|
28
|
+
"toolDomains": ["context", "environment", "logs", "runtime"],
|
|
29
29
|
"modelBinding": "auto",
|
|
30
30
|
"budget": { "maxSteps": 3 }
|
|
31
31
|
},
|
|
32
32
|
{
|
|
33
33
|
"schema": "agent-devkit.subagent-profile/v1",
|
|
34
34
|
"id": "summarizer",
|
|
35
|
-
"toolDomains": ["context"],
|
|
35
|
+
"toolDomains": ["context", "memory", "runtime"],
|
|
36
36
|
"modelBinding": "auto",
|
|
37
37
|
"budget": { "maxSteps": 3 }
|
|
38
38
|
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.automation/v1",
|
|
3
|
+
"id": "document-template",
|
|
4
|
+
"name": "document-template",
|
|
5
|
+
"title": "Document Template",
|
|
6
|
+
"description": "Create a basic Markdown document from a reusable native template.",
|
|
7
|
+
"version": "1.0.0",
|
|
8
|
+
"source": "native",
|
|
9
|
+
"status": "active",
|
|
10
|
+
"kind": "document",
|
|
11
|
+
"tags": ["document", "markdown", "template"],
|
|
12
|
+
"inputSchema": {
|
|
13
|
+
"type": "object",
|
|
14
|
+
"required": ["outputPath"],
|
|
15
|
+
"properties": {
|
|
16
|
+
"outputPath": { "type": "string" }
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"outputSchema": {
|
|
20
|
+
"type": "object",
|
|
21
|
+
"properties": {
|
|
22
|
+
"outputPath": { "type": "string" }
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"matching": {
|
|
26
|
+
"intents": ["create document", "generate markdown document", "start a document"],
|
|
27
|
+
"keywords": ["document", "markdown", "template", "readme"],
|
|
28
|
+
"covers": ["basic markdown document scaffold"],
|
|
29
|
+
"doesNotCover": ["docx formatting", "presentation creation", "spreadsheet generation"]
|
|
30
|
+
},
|
|
31
|
+
"executor": {
|
|
32
|
+
"type": "template",
|
|
33
|
+
"template": "payloads/v1/document.md",
|
|
34
|
+
"outputPathInput": "outputPath"
|
|
35
|
+
},
|
|
36
|
+
"activePayload": "payloads/v1/document.md",
|
|
37
|
+
"files": {
|
|
38
|
+
"skill": "skill.md",
|
|
39
|
+
"readme": "readme.md",
|
|
40
|
+
"payloads": "payloads"
|
|
41
|
+
},
|
|
42
|
+
"effects": [{ "operation": "write", "scope": "project" }],
|
|
43
|
+
"requiredPermissions": ["filesystem.write"],
|
|
44
|
+
"requiredSecrets": [],
|
|
45
|
+
"requiredTooling": [],
|
|
46
|
+
"policy": {
|
|
47
|
+
"allowAgentCreatedUpdates": false,
|
|
48
|
+
"allowBackgroundRun": false,
|
|
49
|
+
"maxOutputBytes": 256000,
|
|
50
|
+
"maxRuntimeMs": 120000
|
|
51
|
+
},
|
|
52
|
+
"provenance": {
|
|
53
|
+
"createdBy": "native",
|
|
54
|
+
"memoryIds": [],
|
|
55
|
+
"runIds": [],
|
|
56
|
+
"notes": "Native smoke-test automation for the canonical automation package contract."
|
|
57
|
+
},
|
|
58
|
+
"verification": {
|
|
59
|
+
"dryRunInput": { "outputPath": "./document.md" },
|
|
60
|
+
"skipReason": "Template copy is deterministic and validated by package contract."
|
|
61
|
+
},
|
|
62
|
+
"createdAt": "2026-07-04T00:00:00.000Z",
|
|
63
|
+
"updatedAt": "2026-07-04T00:00:00.000Z"
|
|
64
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# Document Template Automation
|
|
2
|
+
|
|
3
|
+
## Purpose
|
|
4
|
+
|
|
5
|
+
Create a basic Markdown document from a packaged template.
|
|
6
|
+
|
|
7
|
+
## When To Use
|
|
8
|
+
|
|
9
|
+
Use when the user wants a simple reusable Markdown document scaffold.
|
|
10
|
+
|
|
11
|
+
## When Not To Use
|
|
12
|
+
|
|
13
|
+
Do not use for DOCX, presentations, spreadsheets or rich layout documents.
|
|
14
|
+
|
|
15
|
+
## Required Inputs
|
|
16
|
+
|
|
17
|
+
- `outputPath`: destination path where the Markdown file should be written.
|
|
18
|
+
|
|
19
|
+
## Fit Rules
|
|
20
|
+
|
|
21
|
+
This automation is an exact fit for a basic Markdown scaffold and only a reference for richer document formats.
|
|
22
|
+
|
|
23
|
+
## Execution Flow
|
|
24
|
+
|
|
25
|
+
1. Validate that `outputPath` was provided.
|
|
26
|
+
2. Copy `payloads/v1/document.md` to the requested output path.
|
|
27
|
+
3. Return the written output path.
|
|
28
|
+
|
|
29
|
+
## Validation
|
|
30
|
+
|
|
31
|
+
The automation is valid when `automation.json`, this `skill.md`, `readme.md` and `payloads/v1/document.md` exist.
|
|
32
|
+
|
|
33
|
+
## Failure Handling
|
|
34
|
+
|
|
35
|
+
If writing fails, report the filesystem error and do not retry automatically.
|
|
36
|
+
|
|
37
|
+
## Related Payloads
|
|
38
|
+
|
|
39
|
+
- `payloads/v1/document.md`
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.automation/v1",
|
|
3
|
+
"id": "http-health-check",
|
|
4
|
+
"name": "http-health-check",
|
|
5
|
+
"title": "HTTP Health Check",
|
|
6
|
+
"description": "Run a simple HTTP GET health check from a packaged request definition.",
|
|
7
|
+
"version": "1.0.0",
|
|
8
|
+
"source": "native",
|
|
9
|
+
"status": "active",
|
|
10
|
+
"kind": "api.http.health-check",
|
|
11
|
+
"tags": ["api", "http", "health-check"],
|
|
12
|
+
"inputSchema": {
|
|
13
|
+
"type": "object",
|
|
14
|
+
"properties": {}
|
|
15
|
+
},
|
|
16
|
+
"outputSchema": {
|
|
17
|
+
"type": "object",
|
|
18
|
+
"properties": {
|
|
19
|
+
"status": { "type": "number" },
|
|
20
|
+
"body": { "type": "string" }
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"matching": {
|
|
24
|
+
"intents": ["check api health", "http health check", "verify endpoint"],
|
|
25
|
+
"keywords": ["http", "health", "api", "endpoint", "status"],
|
|
26
|
+
"covers": ["basic HTTP GET health check"],
|
|
27
|
+
"doesNotCover": ["authenticated endpoint checks", "load tests", "multi-step API collections"]
|
|
28
|
+
},
|
|
29
|
+
"executor": {
|
|
30
|
+
"type": "http",
|
|
31
|
+
"request": "payloads/request.json",
|
|
32
|
+
"timeoutMs": 30000
|
|
33
|
+
},
|
|
34
|
+
"activePayload": "payloads/request.json",
|
|
35
|
+
"files": {
|
|
36
|
+
"skill": "skill.md",
|
|
37
|
+
"readme": "readme.md",
|
|
38
|
+
"payloads": "payloads"
|
|
39
|
+
},
|
|
40
|
+
"effects": [{ "operation": "read", "scope": "external" }],
|
|
41
|
+
"requiredPermissions": [],
|
|
42
|
+
"requiredSecrets": [],
|
|
43
|
+
"requiredTooling": [],
|
|
44
|
+
"policy": {
|
|
45
|
+
"allowAgentCreatedUpdates": false,
|
|
46
|
+
"allowBackgroundRun": false,
|
|
47
|
+
"maxOutputBytes": 64000,
|
|
48
|
+
"maxRuntimeMs": 30000
|
|
49
|
+
},
|
|
50
|
+
"provenance": {
|
|
51
|
+
"createdBy": "native",
|
|
52
|
+
"memoryIds": [],
|
|
53
|
+
"runIds": [],
|
|
54
|
+
"notes": "Native read-only HTTP automation sample."
|
|
55
|
+
},
|
|
56
|
+
"verification": {
|
|
57
|
+
"skipReason": "Native sample uses a static read-only GET request and is validated by package contract."
|
|
58
|
+
},
|
|
59
|
+
"createdAt": "2026-07-04T00:00:00.000Z",
|
|
60
|
+
"updatedAt": "2026-07-04T00:00:00.000Z"
|
|
61
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# HTTP Health Check Automation
|
|
2
|
+
|
|
3
|
+
## Purpose
|
|
4
|
+
|
|
5
|
+
Run a basic HTTP GET health check from a packaged request payload.
|
|
6
|
+
|
|
7
|
+
## When To Use
|
|
8
|
+
|
|
9
|
+
Use when the user needs to verify that a public HTTP endpoint responds.
|
|
10
|
+
|
|
11
|
+
## When Not To Use
|
|
12
|
+
|
|
13
|
+
Do not use for authenticated endpoints, load testing or complex API collections.
|
|
14
|
+
|
|
15
|
+
## Required Inputs
|
|
16
|
+
|
|
17
|
+
No runtime input is required by the native sample.
|
|
18
|
+
|
|
19
|
+
## Fit Rules
|
|
20
|
+
|
|
21
|
+
This automation is an exact fit for simple public endpoint health checks and only a reference for authenticated or multi-step API checks.
|
|
22
|
+
|
|
23
|
+
## Execution Flow
|
|
24
|
+
|
|
25
|
+
1. Load `payloads/request.json`.
|
|
26
|
+
2. Execute the HTTP request with timeout.
|
|
27
|
+
3. Return status and truncated body.
|
|
28
|
+
|
|
29
|
+
## Validation
|
|
30
|
+
|
|
31
|
+
The request payload must remain inside `payloads/` and must not contain credentials.
|
|
32
|
+
|
|
33
|
+
## Failure Handling
|
|
34
|
+
|
|
35
|
+
If the endpoint fails, return the HTTP status or network failure without retrying automatically.
|
|
36
|
+
|
|
37
|
+
## Related Payloads
|
|
38
|
+
|
|
39
|
+
- `payloads/request.json`
|
|
@@ -364,6 +364,40 @@
|
|
|
364
364
|
"models.command": "> agent models",
|
|
365
365
|
"models.field.default": "default:",
|
|
366
366
|
"doctor.field.models": "models",
|
|
367
|
-
"doctor.line.models": "Local models: {{count}} installed"
|
|
367
|
+
"doctor.line.models": "Local models: {{count}} installed",
|
|
368
|
+
"cli.option.json": "print JSON output",
|
|
369
|
+
"cli.automations.description": "manage reusable automations",
|
|
370
|
+
"cli.automations.list.description": "list automations",
|
|
371
|
+
"cli.automations.search.description": "search automations",
|
|
372
|
+
"cli.automations.fit.description": "explain automation fit for a task",
|
|
373
|
+
"cli.automations.candidates.description": "list automation candidates",
|
|
374
|
+
"cli.automations.show.description": "show an automation and its skill",
|
|
375
|
+
"cli.automations.validate.description": "validate an automation package",
|
|
376
|
+
"cli.automations.run.description": "run an active automation",
|
|
377
|
+
"cli.automations.install.description": "install a native automation",
|
|
378
|
+
"cli.automations.installNative.description": "install a native automation",
|
|
379
|
+
"cli.automations.disable.description": "disable an automation",
|
|
380
|
+
"cli.automations.archive.description": "archive an automation",
|
|
381
|
+
"cli.automations.audit.description": "show automation audit events",
|
|
382
|
+
"cli.automations.reviewCandidate.description": "review an automation candidate",
|
|
383
|
+
"cli.automations.promoteCandidate.description": "promote an automation candidate",
|
|
384
|
+
"cli.automations.rejectCandidate.description": "reject an automation candidate",
|
|
385
|
+
"cli.automations.candidate.description": "manage automation candidates",
|
|
386
|
+
"cli.automations.candidate.create.description": "create or replace an automation candidate from a canonical directory",
|
|
387
|
+
"cli.automations.candidate.show.description": "show an automation candidate",
|
|
388
|
+
"cli.automations.candidate.review.description": "review an automation candidate",
|
|
389
|
+
"cli.automations.candidate.promote.description": "promote an automation candidate",
|
|
390
|
+
"cli.automations.candidate.reject.description": "reject an automation candidate",
|
|
391
|
+
"cli.automations.curator.description": "manage automation curator jobs",
|
|
392
|
+
"cli.automations.curator.status.description": "show curator candidate status",
|
|
393
|
+
"cli.automations.curator.process.description": "process automation curator work",
|
|
394
|
+
"cli.automations.curator.enqueue.description": "enqueue automation curator work",
|
|
395
|
+
"cli.automations.option.candidates": "include candidate automations",
|
|
396
|
+
"cli.automations.option.automation": "limit fit analysis to one automation",
|
|
397
|
+
"cli.automations.option.limit": "maximum results",
|
|
398
|
+
"cli.automations.option.input": "automation input JSON object",
|
|
399
|
+
"cli.automations.option.reason": "reason for rejecting the candidate",
|
|
400
|
+
"cli.automations.option.yes": "approve the change or execution",
|
|
401
|
+
"cli.automations.reason.rejectedFromCli": "Rejected from CLI."
|
|
368
402
|
}
|
|
369
403
|
}
|
|
@@ -364,6 +364,40 @@
|
|
|
364
364
|
"models.command": "> agent models",
|
|
365
365
|
"models.field.default": "defaut:",
|
|
366
366
|
"doctor.field.models": "modeles",
|
|
367
|
-
"doctor.line.models": "Modeles locaux: {{count}} installe(s)"
|
|
367
|
+
"doctor.line.models": "Modeles locaux: {{count}} installe(s)",
|
|
368
|
+
"cli.option.json": "imprime la sortie en JSON",
|
|
369
|
+
"cli.automations.description": "gère les automatisations réutilisables",
|
|
370
|
+
"cli.automations.list.description": "liste les automatisations",
|
|
371
|
+
"cli.automations.search.description": "cherche des automatisations",
|
|
372
|
+
"cli.automations.fit.description": "explique l'adéquation d'une automatisation à une tâche",
|
|
373
|
+
"cli.automations.candidates.description": "liste les candidates automatisation",
|
|
374
|
+
"cli.automations.show.description": "affiche une automatisation et sa skill",
|
|
375
|
+
"cli.automations.validate.description": "valide un package d'automatisation",
|
|
376
|
+
"cli.automations.run.description": "exécute une automatisation active",
|
|
377
|
+
"cli.automations.install.description": "installe une automatisation native",
|
|
378
|
+
"cli.automations.installNative.description": "installe une automatisation native",
|
|
379
|
+
"cli.automations.disable.description": "désactive une automatisation",
|
|
380
|
+
"cli.automations.archive.description": "archive une automatisation",
|
|
381
|
+
"cli.automations.audit.description": "affiche les événements d'audit des automatisations",
|
|
382
|
+
"cli.automations.reviewCandidate.description": "révise une candidate d'automatisation",
|
|
383
|
+
"cli.automations.promoteCandidate.description": "promeut une candidate d'automatisation",
|
|
384
|
+
"cli.automations.rejectCandidate.description": "rejette une candidate d'automatisation",
|
|
385
|
+
"cli.automations.candidate.description": "gère les candidates d'automatisation",
|
|
386
|
+
"cli.automations.candidate.create.description": "crée ou remplace une candidate d'automatisation depuis un dossier canonique",
|
|
387
|
+
"cli.automations.candidate.show.description": "affiche une candidate d'automatisation",
|
|
388
|
+
"cli.automations.candidate.review.description": "révise une candidate d'automatisation",
|
|
389
|
+
"cli.automations.candidate.promote.description": "promeut une candidate d'automatisation",
|
|
390
|
+
"cli.automations.candidate.reject.description": "rejette une candidate d'automatisation",
|
|
391
|
+
"cli.automations.curator.description": "gère les jobs du curateur d'automatisations",
|
|
392
|
+
"cli.automations.curator.status.description": "affiche le statut des candidates du curateur",
|
|
393
|
+
"cli.automations.curator.process.description": "traite le travail du curateur d'automatisations",
|
|
394
|
+
"cli.automations.curator.enqueue.description": "met en file le travail du curateur d'automatisations",
|
|
395
|
+
"cli.automations.option.candidates": "inclut les candidates automatisation",
|
|
396
|
+
"cli.automations.option.automation": "limite l'analyse d'adéquation à une automatisation",
|
|
397
|
+
"cli.automations.option.limit": "nombre maximal de résultats",
|
|
398
|
+
"cli.automations.option.input": "objet JSON d'entrée de l'automatisation",
|
|
399
|
+
"cli.automations.option.reason": "raison du rejet de la candidate",
|
|
400
|
+
"cli.automations.option.yes": "approuve le changement ou l'exécution",
|
|
401
|
+
"cli.automations.reason.rejectedFromCli": "Rejetée par la CLI."
|
|
368
402
|
}
|
|
369
403
|
}
|
|
@@ -364,6 +364,40 @@
|
|
|
364
364
|
"models.command": "> agent models",
|
|
365
365
|
"models.field.default": "デフォルト:",
|
|
366
366
|
"doctor.field.models": "モデル",
|
|
367
|
-
"doctor.line.models": "ローカルモデル: {{count}} 個インストール済み"
|
|
367
|
+
"doctor.line.models": "ローカルモデル: {{count}} 個インストール済み",
|
|
368
|
+
"cli.option.json": "JSON 出力を表示する",
|
|
369
|
+
"cli.automations.description": "再利用可能なオートメーションを管理する",
|
|
370
|
+
"cli.automations.list.description": "オートメーションを一覧表示する",
|
|
371
|
+
"cli.automations.search.description": "オートメーションを検索する",
|
|
372
|
+
"cli.automations.fit.description": "タスクに対するオートメーションの適合度を説明する",
|
|
373
|
+
"cli.automations.candidates.description": "オートメーション候補を一覧表示する",
|
|
374
|
+
"cli.automations.show.description": "オートメーションと skill を表示する",
|
|
375
|
+
"cli.automations.validate.description": "オートメーションパッケージを検証する",
|
|
376
|
+
"cli.automations.run.description": "有効なオートメーションを実行する",
|
|
377
|
+
"cli.automations.install.description": "ネイティブオートメーションをインストールする",
|
|
378
|
+
"cli.automations.installNative.description": "ネイティブオートメーションをインストールする",
|
|
379
|
+
"cli.automations.disable.description": "オートメーションを無効化する",
|
|
380
|
+
"cli.automations.archive.description": "オートメーションをアーカイブする",
|
|
381
|
+
"cli.automations.audit.description": "オートメーション監査イベントを表示する",
|
|
382
|
+
"cli.automations.reviewCandidate.description": "オートメーション候補をレビューする",
|
|
383
|
+
"cli.automations.promoteCandidate.description": "オートメーション候補を昇格する",
|
|
384
|
+
"cli.automations.rejectCandidate.description": "オートメーション候補を却下する",
|
|
385
|
+
"cli.automations.candidate.description": "オートメーション候補を管理する",
|
|
386
|
+
"cli.automations.candidate.create.description": "正規ディレクトリからオートメーション候補を作成または置換する",
|
|
387
|
+
"cli.automations.candidate.show.description": "オートメーション候補を表示する",
|
|
388
|
+
"cli.automations.candidate.review.description": "オートメーション候補をレビューする",
|
|
389
|
+
"cli.automations.candidate.promote.description": "オートメーション候補を昇格する",
|
|
390
|
+
"cli.automations.candidate.reject.description": "オートメーション候補を却下する",
|
|
391
|
+
"cli.automations.curator.description": "オートメーションキュレーターのジョブを管理する",
|
|
392
|
+
"cli.automations.curator.status.description": "キュレーター候補の状態を表示する",
|
|
393
|
+
"cli.automations.curator.process.description": "オートメーションキュレーターの作業を処理する",
|
|
394
|
+
"cli.automations.curator.enqueue.description": "オートメーションキュレーターの作業をキューに入れる",
|
|
395
|
+
"cli.automations.option.candidates": "オートメーション候補を含める",
|
|
396
|
+
"cli.automations.option.automation": "適合分析を1つのオートメーションに限定する",
|
|
397
|
+
"cli.automations.option.limit": "最大結果数",
|
|
398
|
+
"cli.automations.option.input": "オートメーション入力の JSON オブジェクト",
|
|
399
|
+
"cli.automations.option.reason": "候補を却下する理由",
|
|
400
|
+
"cli.automations.option.yes": "変更または実行を承認する",
|
|
401
|
+
"cli.automations.reason.rejectedFromCli": "CLI から却下されました。"
|
|
368
402
|
}
|
|
369
403
|
}
|
|
@@ -364,6 +364,40 @@
|
|
|
364
364
|
"models.command": "> agent models",
|
|
365
365
|
"models.field.default": "padrão:",
|
|
366
366
|
"doctor.field.models": "modelos",
|
|
367
|
-
"doctor.line.models": "Modelos locais: {{count}} instalado(s)"
|
|
367
|
+
"doctor.line.models": "Modelos locais: {{count}} instalado(s)",
|
|
368
|
+
"cli.option.json": "imprime saída em JSON",
|
|
369
|
+
"cli.automations.description": "gerencia automações reutilizáveis",
|
|
370
|
+
"cli.automations.list.description": "lista automações",
|
|
371
|
+
"cli.automations.search.description": "busca automações",
|
|
372
|
+
"cli.automations.fit.description": "explica o encaixe da automação para uma tarefa",
|
|
373
|
+
"cli.automations.candidates.description": "lista candidatas de automação",
|
|
374
|
+
"cli.automations.show.description": "mostra uma automação e sua skill",
|
|
375
|
+
"cli.automations.validate.description": "valida um pacote de automação",
|
|
376
|
+
"cli.automations.run.description": "executa uma automação ativa",
|
|
377
|
+
"cli.automations.install.description": "instala uma automação nativa",
|
|
378
|
+
"cli.automations.installNative.description": "instala uma automação nativa",
|
|
379
|
+
"cli.automations.disable.description": "desativa uma automação",
|
|
380
|
+
"cli.automations.archive.description": "arquiva uma automação",
|
|
381
|
+
"cli.automations.audit.description": "mostra eventos de auditoria de automações",
|
|
382
|
+
"cli.automations.reviewCandidate.description": "revisa uma candidata de automação",
|
|
383
|
+
"cli.automations.promoteCandidate.description": "promove uma candidata de automação",
|
|
384
|
+
"cli.automations.rejectCandidate.description": "rejeita uma candidata de automação",
|
|
385
|
+
"cli.automations.candidate.description": "gerencia candidatas de automação",
|
|
386
|
+
"cli.automations.candidate.create.description": "cria ou substitui uma candidata de automação a partir de um diretório canônico",
|
|
387
|
+
"cli.automations.candidate.show.description": "mostra uma candidata de automação",
|
|
388
|
+
"cli.automations.candidate.review.description": "revisa uma candidata de automação",
|
|
389
|
+
"cli.automations.candidate.promote.description": "promove uma candidata de automação",
|
|
390
|
+
"cli.automations.candidate.reject.description": "rejeita uma candidata de automação",
|
|
391
|
+
"cli.automations.curator.description": "gerencia jobs do curador de automações",
|
|
392
|
+
"cli.automations.curator.status.description": "mostra o status das candidatas no curador",
|
|
393
|
+
"cli.automations.curator.process.description": "processa trabalho do curador de automações",
|
|
394
|
+
"cli.automations.curator.enqueue.description": "enfileira trabalho do curador de automações",
|
|
395
|
+
"cli.automations.option.candidates": "inclui candidatas de automação",
|
|
396
|
+
"cli.automations.option.automation": "limita a análise de encaixe a uma automação",
|
|
397
|
+
"cli.automations.option.limit": "número máximo de resultados",
|
|
398
|
+
"cli.automations.option.input": "objeto JSON de entrada da automação",
|
|
399
|
+
"cli.automations.option.reason": "motivo para rejeitar a candidata",
|
|
400
|
+
"cli.automations.option.yes": "aprova a alteração ou execução",
|
|
401
|
+
"cli.automations.reason.rejectedFromCli": "Rejeitada pela CLI."
|
|
368
402
|
}
|
|
369
403
|
}
|
|
@@ -364,6 +364,40 @@
|
|
|
364
364
|
"models.command": "> agent models",
|
|
365
365
|
"models.field.default": "默认:",
|
|
366
366
|
"doctor.field.models": "模型",
|
|
367
|
-
"doctor.line.models": "本地模型: 已安装 {{count}} 个"
|
|
367
|
+
"doctor.line.models": "本地模型: 已安装 {{count}} 个",
|
|
368
|
+
"cli.option.json": "输出 JSON",
|
|
369
|
+
"cli.automations.description": "管理可复用自动化",
|
|
370
|
+
"cli.automations.list.description": "列出自动化",
|
|
371
|
+
"cli.automations.search.description": "搜索自动化",
|
|
372
|
+
"cli.automations.fit.description": "解释自动化对任务的适配度",
|
|
373
|
+
"cli.automations.candidates.description": "列出自动化候选项",
|
|
374
|
+
"cli.automations.show.description": "显示自动化及其 skill",
|
|
375
|
+
"cli.automations.validate.description": "验证自动化包",
|
|
376
|
+
"cli.automations.run.description": "运行已启用的自动化",
|
|
377
|
+
"cli.automations.install.description": "安装内置自动化",
|
|
378
|
+
"cli.automations.installNative.description": "安装内置自动化",
|
|
379
|
+
"cli.automations.disable.description": "禁用自动化",
|
|
380
|
+
"cli.automations.archive.description": "归档自动化",
|
|
381
|
+
"cli.automations.audit.description": "显示自动化审计事件",
|
|
382
|
+
"cli.automations.reviewCandidate.description": "审查自动化候选项",
|
|
383
|
+
"cli.automations.promoteCandidate.description": "提升自动化候选项",
|
|
384
|
+
"cli.automations.rejectCandidate.description": "拒绝自动化候选项",
|
|
385
|
+
"cli.automations.candidate.description": "管理自动化候选项",
|
|
386
|
+
"cli.automations.candidate.create.description": "从规范目录创建或替换自动化候选项",
|
|
387
|
+
"cli.automations.candidate.show.description": "显示自动化候选项",
|
|
388
|
+
"cli.automations.candidate.review.description": "审查自动化候选项",
|
|
389
|
+
"cli.automations.candidate.promote.description": "提升自动化候选项",
|
|
390
|
+
"cli.automations.candidate.reject.description": "拒绝自动化候选项",
|
|
391
|
+
"cli.automations.curator.description": "管理自动化策展器任务",
|
|
392
|
+
"cli.automations.curator.status.description": "显示策展器候选项状态",
|
|
393
|
+
"cli.automations.curator.process.description": "处理自动化策展器工作",
|
|
394
|
+
"cli.automations.curator.enqueue.description": "将自动化策展器工作加入队列",
|
|
395
|
+
"cli.automations.option.candidates": "包含自动化候选项",
|
|
396
|
+
"cli.automations.option.automation": "将适配分析限制为一个自动化",
|
|
397
|
+
"cli.automations.option.limit": "最大结果数",
|
|
398
|
+
"cli.automations.option.input": "自动化输入 JSON 对象",
|
|
399
|
+
"cli.automations.option.reason": "拒绝候选项的原因",
|
|
400
|
+
"cli.automations.option.yes": "批准更改或执行",
|
|
401
|
+
"cli.automations.reason.rejectedFromCli": "已由 CLI 拒绝。"
|
|
368
402
|
}
|
|
369
403
|
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "anthropic",
|
|
4
|
+
"name": "Anthropic MCP",
|
|
5
|
+
"description": "Anthropic-compatible remote MCP endpoint.",
|
|
6
|
+
"transport": "http",
|
|
7
|
+
"homepage": "https://www.anthropic.com",
|
|
8
|
+
"http": {
|
|
9
|
+
"url": "{{url}}",
|
|
10
|
+
"headers": [
|
|
11
|
+
{
|
|
12
|
+
"name": "Authorization",
|
|
13
|
+
"description": "Authorization header value stored in the Agent DevKit vault.",
|
|
14
|
+
"secretName": "mcp/anthropic/authorization",
|
|
15
|
+
"required": false
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"environment": [],
|
|
20
|
+
"variables": [
|
|
21
|
+
{
|
|
22
|
+
"name": "url",
|
|
23
|
+
"description": "Anthropic MCP endpoint URL.",
|
|
24
|
+
"required": true
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "aws",
|
|
4
|
+
"name": "AWS MCP",
|
|
5
|
+
"description": "AWS MCP proxy using AWS credentials from the local environment or Agent DevKit vault.",
|
|
6
|
+
"transport": "stdio",
|
|
7
|
+
"homepage": "https://github.com/awslabs/mcp",
|
|
8
|
+
"stdio": {
|
|
9
|
+
"command": "uvx",
|
|
10
|
+
"args": ["mcp-proxy-for-aws", "{{url}}"]
|
|
11
|
+
},
|
|
12
|
+
"environment": [
|
|
13
|
+
{
|
|
14
|
+
"name": "AWS_ACCESS_KEY_ID",
|
|
15
|
+
"description": "AWS access key id stored in the Agent DevKit vault.",
|
|
16
|
+
"secretName": "mcp/aws/access-key-id",
|
|
17
|
+
"required": false
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "AWS_SECRET_ACCESS_KEY",
|
|
21
|
+
"description": "AWS secret access key stored in the Agent DevKit vault.",
|
|
22
|
+
"secretName": "mcp/aws/secret-access-key",
|
|
23
|
+
"required": false
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "AWS_SESSION_TOKEN",
|
|
27
|
+
"description": "AWS session token stored in the Agent DevKit vault.",
|
|
28
|
+
"secretName": "mcp/aws/session-token",
|
|
29
|
+
"required": false
|
|
30
|
+
}
|
|
31
|
+
],
|
|
32
|
+
"variables": [
|
|
33
|
+
{
|
|
34
|
+
"name": "url",
|
|
35
|
+
"description": "AWS MCP endpoint URL.",
|
|
36
|
+
"default": "https://aws-mcp.us-east-1.api.aws/mcp",
|
|
37
|
+
"required": true
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "agent-devkit.mcp/v1",
|
|
3
|
+
"id": "azure",
|
|
4
|
+
"name": "Azure MCP",
|
|
5
|
+
"description": "Azure-compatible remote MCP endpoint.",
|
|
6
|
+
"transport": "http",
|
|
7
|
+
"homepage": "https://azure.microsoft.com",
|
|
8
|
+
"http": {
|
|
9
|
+
"url": "{{url}}",
|
|
10
|
+
"headers": [
|
|
11
|
+
{
|
|
12
|
+
"name": "Authorization",
|
|
13
|
+
"description": "Authorization header value stored in the Agent DevKit vault.",
|
|
14
|
+
"secretName": "mcp/azure/authorization",
|
|
15
|
+
"required": false
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"environment": [],
|
|
20
|
+
"variables": [
|
|
21
|
+
{
|
|
22
|
+
"name": "url",
|
|
23
|
+
"description": "Azure MCP endpoint URL.",
|
|
24
|
+
"required": true
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|