agent-devkit 0.1.6 → 0.3.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 +59 -5
- package/bin/agent.mjs +133 -7
- package/package.json +1 -1
- package/runtime/README.md +239 -5
- package/runtime/agent +36 -5
- package/runtime/agents/README.md +44 -0
- package/runtime/agents/agent-devkit-agent-builder/AGENTS.md +24 -0
- package/runtime/agents/agent-devkit-agent-builder/README.md +37 -0
- package/runtime/agents/agent-devkit-agent-builder/agent.yaml +46 -0
- package/runtime/agents/agent-devkit-agent-builder/capabilities/plan-agent/capability.yaml +29 -0
- package/runtime/agents/agent-devkit-agent-builder/capabilities/plan-agent/decision-rules.md +7 -0
- package/runtime/agents/agent-devkit-agent-builder/capabilities/plan-agent/runner.py +33 -0
- package/runtime/agents/agent-devkit-agent-builder/capabilities/plan-agent/workflow.md +8 -0
- package/runtime/agents/agent-devkit-agent-builder/capabilities/scaffold-agent/capability.yaml +31 -0
- package/runtime/agents/agent-devkit-agent-builder/capabilities/scaffold-agent/decision-rules.md +9 -0
- package/runtime/agents/agent-devkit-agent-builder/capabilities/scaffold-agent/runner.py +39 -0
- package/runtime/agents/agent-devkit-agent-builder/capabilities/scaffold-agent/workflow.md +8 -0
- package/runtime/agents/agent-devkit-agent-builder/capabilities/validate-agent-contract/capability.yaml +28 -0
- package/runtime/agents/agent-devkit-agent-builder/capabilities/validate-agent-contract/decision-rules.md +6 -0
- package/runtime/agents/agent-devkit-agent-builder/capabilities/validate-agent-contract/runner.py +33 -0
- package/runtime/agents/agent-devkit-agent-builder/capabilities/validate-agent-contract/workflow.md +7 -0
- package/runtime/agents/agent-devkit-agent-builder/infra/integrations/agent-devkit/agent_builder_repository.py +527 -0
- package/runtime/agents/agent-devkit-agent-builder/knowledge/context.md +15 -0
- package/runtime/agents/agent-devkit-agent-builder/knowledge/policies.yaml +11 -0
- package/runtime/agents/agent-devkit-agent-builder/knowledge/system.md +11 -0
- package/runtime/agents/agent-devkit-agent-builder/templates/agent-plan-output.md +20 -0
- package/runtime/agents/agent-devkit-agent-builder/templates/scaffold-plan-output.md +13 -0
- package/runtime/agents/agent-devkit-agent-builder/templates/validation-report-output.md +13 -0
- package/runtime/agents/agent-devkit-agent-builder/tests/test_runners.py +188 -0
- package/runtime/agents/automation-architect/AGENTS.md +11 -0
- package/runtime/agents/automation-architect/README.md +27 -0
- package/runtime/agents/automation-architect/agent.yaml +57 -0
- package/runtime/agents/automation-architect/capabilities/classify-automation-request/capability.yaml +35 -0
- package/runtime/agents/automation-architect/capabilities/classify-automation-request/decision-rules.md +10 -0
- package/runtime/agents/automation-architect/capabilities/classify-automation-request/runner.py +37 -0
- package/runtime/agents/automation-architect/capabilities/classify-automation-request/workflow.md +7 -0
- package/runtime/agents/automation-architect/capabilities/delegate-automation-build/capability.yaml +34 -0
- package/runtime/agents/automation-architect/capabilities/delegate-automation-build/decision-rules.md +7 -0
- package/runtime/agents/automation-architect/capabilities/delegate-automation-build/runner.py +37 -0
- package/runtime/agents/automation-architect/capabilities/delegate-automation-build/workflow.md +6 -0
- package/runtime/agents/automation-architect/capabilities/plan-automation-solution/capability.yaml +35 -0
- package/runtime/agents/automation-architect/capabilities/plan-automation-solution/decision-rules.md +7 -0
- package/runtime/agents/automation-architect/capabilities/plan-automation-solution/runner.py +37 -0
- package/runtime/agents/automation-architect/capabilities/plan-automation-solution/workflow.md +7 -0
- package/runtime/agents/automation-architect/capabilities/review-automation-solution/capability.yaml +36 -0
- package/runtime/agents/automation-architect/capabilities/review-automation-solution/decision-rules.md +7 -0
- package/runtime/agents/automation-architect/capabilities/review-automation-solution/runner.py +39 -0
- package/runtime/agents/automation-architect/capabilities/review-automation-solution/workflow.md +7 -0
- package/runtime/agents/automation-architect/infra/integrations/automation-architecture/automation_architecture_repository.py +481 -0
- package/runtime/agents/automation-architect/knowledge/context.md +22 -0
- package/runtime/agents/automation-architect/knowledge/policies.yaml +20 -0
- package/runtime/agents/automation-architect/knowledge/system.md +8 -0
- package/runtime/agents/automation-architect/templates/automation-classification.md +6 -0
- package/runtime/agents/automation-architect/templates/automation-plan.md +5 -0
- package/runtime/agents/automation-architect/tests/test_runners.py +135 -0
- package/runtime/agents/aws-architecture-analyst/agent.yaml +17 -4
- package/runtime/agents/aws-cloudwatch-log-analyzer/agent.yaml +12 -2
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/analyze-service-error/capability.yaml +16 -0
- package/runtime/agents/aws-lambda-builder/AGENTS.md +27 -0
- package/runtime/agents/aws-lambda-builder/README.md +21 -0
- package/runtime/agents/aws-lambda-builder/agent.yaml +46 -0
- package/runtime/agents/aws-lambda-builder/capabilities/deploy-lambda-plan/capability.yaml +18 -0
- package/runtime/agents/aws-lambda-builder/capabilities/deploy-lambda-plan/decision-rules.md +6 -0
- package/runtime/agents/aws-lambda-builder/capabilities/deploy-lambda-plan/runner.py +33 -0
- package/runtime/agents/aws-lambda-builder/capabilities/deploy-lambda-plan/workflow.md +6 -0
- package/runtime/agents/aws-lambda-builder/capabilities/generate-lambda-project/capability.yaml +20 -0
- package/runtime/agents/aws-lambda-builder/capabilities/generate-lambda-project/decision-rules.md +6 -0
- package/runtime/agents/aws-lambda-builder/capabilities/generate-lambda-project/runner.py +39 -0
- package/runtime/agents/aws-lambda-builder/capabilities/generate-lambda-project/workflow.md +7 -0
- package/runtime/agents/aws-lambda-builder/capabilities/package-lambda/capability.yaml +22 -0
- package/runtime/agents/aws-lambda-builder/capabilities/package-lambda/decision-rules.md +6 -0
- package/runtime/agents/aws-lambda-builder/capabilities/package-lambda/runner.py +41 -0
- package/runtime/agents/aws-lambda-builder/capabilities/package-lambda/workflow.md +6 -0
- package/runtime/agents/aws-lambda-builder/capabilities/plan-lambda/capability.yaml +18 -0
- package/runtime/agents/aws-lambda-builder/capabilities/plan-lambda/decision-rules.md +7 -0
- package/runtime/agents/aws-lambda-builder/capabilities/plan-lambda/runner.py +33 -0
- package/runtime/agents/aws-lambda-builder/capabilities/plan-lambda/workflow.md +6 -0
- package/runtime/agents/aws-lambda-builder/capabilities/review-lambda-security/capability.yaml +18 -0
- package/runtime/agents/aws-lambda-builder/capabilities/review-lambda-security/decision-rules.md +7 -0
- package/runtime/agents/aws-lambda-builder/capabilities/review-lambda-security/runner.py +33 -0
- package/runtime/agents/aws-lambda-builder/capabilities/review-lambda-security/workflow.md +5 -0
- package/runtime/agents/aws-lambda-builder/infra/integrations/aws-lambda/aws_lambda_repository.py +688 -0
- package/runtime/agents/aws-lambda-builder/knowledge/context.md +12 -0
- package/runtime/agents/aws-lambda-builder/knowledge/policies.yaml +23 -0
- package/runtime/agents/aws-lambda-builder/knowledge/system.md +10 -0
- package/runtime/agents/aws-lambda-builder/templates/lambda-deploy-plan.md +3 -0
- package/runtime/agents/aws-lambda-builder/templates/lambda-package.md +3 -0
- package/runtime/agents/aws-lambda-builder/templates/lambda-plan.md +3 -0
- package/runtime/agents/aws-lambda-builder/templates/lambda-readme.md +3 -0
- package/runtime/agents/aws-lambda-builder/templates/lambda-security-review.md +3 -0
- package/runtime/agents/aws-lambda-builder/tests/test_runners.py +355 -0
- package/runtime/agents/aws-operations-operator/agent.yaml +18 -6
- package/runtime/agents/aws-security-governance-auditor/agent.yaml +17 -5
- package/runtime/agents/azure-devops-orchestrator/agent.yaml +15 -2
- package/runtime/agents/azure-devops-orchestrator/capabilities/read-card/capability.yaml +29 -0
- package/runtime/agents/bpo-analyser/agent.yaml +12 -2
- package/runtime/agents/bpo-analyser/knowledge/policies.yaml +2 -2
- package/runtime/agents/contribution-reviewer/AGENTS.md +8 -0
- package/runtime/agents/contribution-reviewer/README.md +8 -0
- package/runtime/agents/contribution-reviewer/agent.yaml +40 -0
- package/runtime/agents/contribution-reviewer/capabilities/plan-contribution-pr/capability.yaml +27 -0
- package/runtime/agents/contribution-reviewer/capabilities/plan-contribution-pr/decision-rules.md +5 -0
- package/runtime/agents/contribution-reviewer/capabilities/plan-contribution-pr/workflow.md +6 -0
- package/runtime/agents/contribution-reviewer/capabilities/review-contribution/capability.yaml +25 -0
- package/runtime/agents/contribution-reviewer/capabilities/review-contribution/decision-rules.md +5 -0
- package/runtime/agents/contribution-reviewer/capabilities/review-contribution/workflow.md +5 -0
- package/runtime/agents/contribution-reviewer/capabilities/validate-local-contribution/capability.yaml +26 -0
- package/runtime/agents/contribution-reviewer/capabilities/validate-local-contribution/decision-rules.md +5 -0
- package/runtime/agents/contribution-reviewer/capabilities/validate-local-contribution/workflow.md +6 -0
- package/runtime/agents/contribution-reviewer/infra/README.md +6 -0
- package/runtime/agents/contribution-reviewer/knowledge/context.md +8 -0
- package/runtime/agents/contribution-reviewer/knowledge/system.md +8 -0
- package/runtime/agents/contribution-reviewer/templates/README.md +3 -0
- package/runtime/agents/data-scientist-analyst/agent.yaml +16 -4
- package/runtime/agents/data-scientist-analyst/capabilities/generate-data-report/capability.yaml +1 -1
- package/runtime/agents/data-scientist-analyst/capabilities/generate-reconciliation-report/capability.yaml +1 -1
- package/runtime/agents/data-scientist-analyst/capabilities/run-data-pipeline/capability.yaml +1 -1
- package/runtime/agents/data-scientist-analyst/infra/integrations/agent-bridge/methods/analyze-sql-source.yaml +1 -1
- package/runtime/agents/data-scientist-analyst/knowledge/policies.yaml +4 -4
- package/runtime/agents/data-scientist-analyst/knowledge/system.md +1 -1
- package/runtime/agents/data-scientist-analyst/tests/test_runners.py +1 -1
- package/runtime/agents/database-change-operator/agent.yaml +12 -1
- package/runtime/agents/docker-container-builder/AGENTS.md +27 -0
- package/runtime/agents/docker-container-builder/README.md +21 -0
- package/runtime/agents/docker-container-builder/agent.yaml +52 -0
- package/runtime/agents/docker-container-builder/capabilities/analyze-containerization-target/capability.yaml +18 -0
- package/runtime/agents/docker-container-builder/capabilities/analyze-containerization-target/decision-rules.md +6 -0
- package/runtime/agents/docker-container-builder/capabilities/analyze-containerization-target/runner.py +32 -0
- package/runtime/agents/docker-container-builder/capabilities/analyze-containerization-target/workflow.md +6 -0
- package/runtime/agents/docker-container-builder/capabilities/generate-compose/capability.yaml +18 -0
- package/runtime/agents/docker-container-builder/capabilities/generate-compose/decision-rules.md +7 -0
- package/runtime/agents/docker-container-builder/capabilities/generate-compose/runner.py +32 -0
- package/runtime/agents/docker-container-builder/capabilities/generate-compose/workflow.md +6 -0
- package/runtime/agents/docker-container-builder/capabilities/generate-container-project-files/capability.yaml +20 -0
- package/runtime/agents/docker-container-builder/capabilities/generate-container-project-files/decision-rules.md +7 -0
- package/runtime/agents/docker-container-builder/capabilities/generate-container-project-files/runner.py +38 -0
- package/runtime/agents/docker-container-builder/capabilities/generate-container-project-files/workflow.md +7 -0
- package/runtime/agents/docker-container-builder/capabilities/generate-dockerfile/capability.yaml +18 -0
- package/runtime/agents/docker-container-builder/capabilities/generate-dockerfile/decision-rules.md +6 -0
- package/runtime/agents/docker-container-builder/capabilities/generate-dockerfile/runner.py +32 -0
- package/runtime/agents/docker-container-builder/capabilities/generate-dockerfile/workflow.md +7 -0
- package/runtime/agents/docker-container-builder/capabilities/plan-image-build/capability.yaml +18 -0
- package/runtime/agents/docker-container-builder/capabilities/plan-image-build/decision-rules.md +6 -0
- package/runtime/agents/docker-container-builder/capabilities/plan-image-build/runner.py +32 -0
- package/runtime/agents/docker-container-builder/capabilities/plan-image-build/workflow.md +6 -0
- package/runtime/agents/docker-container-builder/capabilities/review-docker-security/capability.yaml +21 -0
- package/runtime/agents/docker-container-builder/capabilities/review-docker-security/decision-rules.md +6 -0
- package/runtime/agents/docker-container-builder/capabilities/review-docker-security/runner.py +43 -0
- package/runtime/agents/docker-container-builder/capabilities/review-docker-security/workflow.md +5 -0
- package/runtime/agents/docker-container-builder/infra/integrations/docker-container/docker_container_repository.py +837 -0
- package/runtime/agents/docker-container-builder/knowledge/context.md +21 -0
- package/runtime/agents/docker-container-builder/knowledge/policies.yaml +13 -0
- package/runtime/agents/docker-container-builder/knowledge/system.md +21 -0
- package/runtime/agents/docker-container-builder/templates/container-plan.md +4 -0
- package/runtime/agents/docker-container-builder/templates/container-review.md +4 -0
- package/runtime/agents/docker-container-builder/templates/docker-compose.md +5 -0
- package/runtime/agents/docker-container-builder/templates/docker-readme.md +3 -0
- package/runtime/agents/docker-container-builder/templates/dockerfile.md +5 -0
- package/runtime/agents/docker-container-builder/tests/test_runners.py +255 -0
- package/runtime/agents/drawio-diagram-builder/agent.yaml +11 -2
- package/runtime/agents/drawio-diagram-builder/capabilities/execute-diagram-delivery/capability.yaml +1 -1
- package/runtime/agents/drawio-diagram-builder/capabilities/read-azure-card-context/capability.yaml +1 -1
- package/runtime/agents/elasticsearch-log-analyzer/agent.yaml +14 -2
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/analyze-service-errors/capability.yaml +14 -0
- package/runtime/agents/excel-workbook-builder/agent.yaml +10 -0
- package/runtime/agents/excel-workbook-builder/capabilities/create-template/capability.yaml +1 -1
- package/runtime/agents/excel-workbook-builder/capabilities/create-template/workflow.md +1 -1
- package/runtime/agents/excel-workbook-builder/capabilities/create-template-version/capability.yaml +1 -1
- package/runtime/agents/excel-workbook-builder/capabilities/generate-template-input-file/capability.yaml +1 -2
- package/runtime/agents/excel-workbook-builder/capabilities/refine-template/capability.yaml +1 -1
- package/runtime/agents/excel-workbook-builder/capabilities/register-template/capability.yaml +1 -2
- package/runtime/agents/excel-workbook-builder/capabilities/register-template/workflow.md +1 -1
- package/runtime/agents/execution-loop-builder/AGENTS.md +24 -0
- package/runtime/agents/execution-loop-builder/README.md +19 -0
- package/runtime/agents/execution-loop-builder/agent.yaml +49 -0
- package/runtime/agents/execution-loop-builder/capabilities/generate-loop-project-files/capability.yaml +20 -0
- package/runtime/agents/execution-loop-builder/capabilities/generate-loop-project-files/decision-rules.md +6 -0
- package/runtime/agents/execution-loop-builder/capabilities/generate-loop-project-files/runner.py +38 -0
- package/runtime/agents/execution-loop-builder/capabilities/generate-loop-project-files/workflow.md +7 -0
- package/runtime/agents/execution-loop-builder/capabilities/generate-loop-runner/capability.yaml +18 -0
- package/runtime/agents/execution-loop-builder/capabilities/generate-loop-runner/decision-rules.md +5 -0
- package/runtime/agents/execution-loop-builder/capabilities/generate-loop-runner/runner.py +32 -0
- package/runtime/agents/execution-loop-builder/capabilities/generate-loop-runner/workflow.md +6 -0
- package/runtime/agents/execution-loop-builder/capabilities/plan-execution-loop/capability.yaml +18 -0
- package/runtime/agents/execution-loop-builder/capabilities/plan-execution-loop/decision-rules.md +6 -0
- package/runtime/agents/execution-loop-builder/capabilities/plan-execution-loop/runner.py +32 -0
- package/runtime/agents/execution-loop-builder/capabilities/plan-execution-loop/workflow.md +6 -0
- package/runtime/agents/execution-loop-builder/capabilities/register-loop-task/capability.yaml +19 -0
- package/runtime/agents/execution-loop-builder/capabilities/register-loop-task/decision-rules.md +6 -0
- package/runtime/agents/execution-loop-builder/capabilities/register-loop-task/runner.py +36 -0
- package/runtime/agents/execution-loop-builder/capabilities/register-loop-task/workflow.md +6 -0
- package/runtime/agents/execution-loop-builder/capabilities/review-loop-safety/capability.yaml +19 -0
- package/runtime/agents/execution-loop-builder/capabilities/review-loop-safety/decision-rules.md +6 -0
- package/runtime/agents/execution-loop-builder/capabilities/review-loop-safety/runner.py +39 -0
- package/runtime/agents/execution-loop-builder/capabilities/review-loop-safety/workflow.md +5 -0
- package/runtime/agents/execution-loop-builder/infra/integrations/execution-loop/execution_loop_repository.py +608 -0
- package/runtime/agents/execution-loop-builder/knowledge/context.md +26 -0
- package/runtime/agents/execution-loop-builder/knowledge/policies.yaml +13 -0
- package/runtime/agents/execution-loop-builder/knowledge/system.md +19 -0
- package/runtime/agents/execution-loop-builder/templates/loop-plan.md +3 -0
- package/runtime/agents/execution-loop-builder/templates/loop-readme.md +3 -0
- package/runtime/agents/execution-loop-builder/templates/loop-review.md +3 -0
- package/runtime/agents/execution-loop-builder/templates/loop-runner.py +2 -0
- package/runtime/agents/execution-loop-builder/tests/test_runners.py +274 -0
- package/runtime/agents/execution-reviewer/agent.yaml +6 -4
- package/runtime/agents/execution-reviewer/capabilities/review-agent-result/capability.yaml +1 -2
- package/runtime/agents/execution-reviewer/capabilities/review-final-output/capability.yaml +1 -2
- package/runtime/agents/execution-reviewer/capabilities/review-plan/capability.yaml +1 -2
- package/runtime/agents/figma-ui-ux-product-designer/agent.yaml +17 -5
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/analyze-product-context/capability.yaml +1 -1
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/conduct-design-interview/capability.yaml +1 -1
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/conduct-design-review-session/capability.yaml +1 -1
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/generate-dev-handoff/capability.yaml +1 -1
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/generate-user-journey-diagram/capability.yaml +1 -1
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/ingest-design-source/capability.yaml +1 -1
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/triage-design-feedback/capability.yaml +1 -1
- package/runtime/agents/generic-agent-builder/AGENTS.md +20 -0
- package/runtime/agents/generic-agent-builder/README.md +40 -0
- package/runtime/agents/generic-agent-builder/agent.yaml +43 -0
- package/runtime/agents/generic-agent-builder/capabilities/generate-agent-instructions/capability.yaml +18 -0
- package/runtime/agents/generic-agent-builder/capabilities/generate-agent-instructions/decision-rules.md +5 -0
- package/runtime/agents/generic-agent-builder/capabilities/generate-agent-instructions/runner.py +33 -0
- package/runtime/agents/generic-agent-builder/capabilities/generate-agent-instructions/workflow.md +6 -0
- package/runtime/agents/generic-agent-builder/capabilities/generate-project-agent-files/capability.yaml +20 -0
- package/runtime/agents/generic-agent-builder/capabilities/generate-project-agent-files/decision-rules.md +6 -0
- package/runtime/agents/generic-agent-builder/capabilities/generate-project-agent-files/runner.py +39 -0
- package/runtime/agents/generic-agent-builder/capabilities/generate-project-agent-files/workflow.md +7 -0
- package/runtime/agents/generic-agent-builder/capabilities/generate-skill/capability.yaml +18 -0
- package/runtime/agents/generic-agent-builder/capabilities/generate-skill/decision-rules.md +5 -0
- package/runtime/agents/generic-agent-builder/capabilities/generate-skill/runner.py +33 -0
- package/runtime/agents/generic-agent-builder/capabilities/generate-skill/workflow.md +5 -0
- package/runtime/agents/generic-agent-builder/capabilities/plan-generic-agent/capability.yaml +18 -0
- package/runtime/agents/generic-agent-builder/capabilities/plan-generic-agent/decision-rules.md +6 -0
- package/runtime/agents/generic-agent-builder/capabilities/plan-generic-agent/runner.py +33 -0
- package/runtime/agents/generic-agent-builder/capabilities/plan-generic-agent/workflow.md +6 -0
- package/runtime/agents/generic-agent-builder/capabilities/review-generic-agent/capability.yaml +20 -0
- package/runtime/agents/generic-agent-builder/capabilities/review-generic-agent/decision-rules.md +6 -0
- package/runtime/agents/generic-agent-builder/capabilities/review-generic-agent/runner.py +40 -0
- package/runtime/agents/generic-agent-builder/capabilities/review-generic-agent/workflow.md +7 -0
- package/runtime/agents/generic-agent-builder/infra/integrations/generic-agent/generic_agent_repository.py +445 -0
- package/runtime/agents/generic-agent-builder/knowledge/context.md +11 -0
- package/runtime/agents/generic-agent-builder/knowledge/policies.yaml +12 -0
- package/runtime/agents/generic-agent-builder/knowledge/system.md +17 -0
- package/runtime/agents/generic-agent-builder/templates/generic-agent-instructions.md +17 -0
- package/runtime/agents/generic-agent-builder/templates/generic-review-report.md +13 -0
- package/runtime/agents/generic-agent-builder/templates/generic-skill.md +14 -0
- package/runtime/agents/generic-agent-builder/tests/test_runners.py +220 -0
- package/runtime/agents/github-pr-reviewer/agent.yaml +17 -5
- package/runtime/agents/github-pr-reviewer/capabilities/create-review-automation/capability.yaml +1 -1
- package/runtime/agents/github-pr-reviewer/capabilities/inspect-pr/capability.yaml +1 -1
- package/runtime/agents/github-pr-reviewer/capabilities/list-review-requests/capability.yaml +1 -1
- package/runtime/agents/github-pr-reviewer/capabilities/review-pr-diff/capability.yaml +1 -1
- package/runtime/agents/knowledge-author/AGENTS.md +7 -0
- package/runtime/agents/knowledge-author/README.md +7 -0
- package/runtime/agents/knowledge-author/agent.yaml +37 -0
- package/runtime/agents/knowledge-author/capabilities/create-knowledge-snapshot/capability.yaml +30 -0
- package/runtime/agents/knowledge-author/capabilities/create-knowledge-snapshot/decision-rules.md +6 -0
- package/runtime/agents/knowledge-author/capabilities/create-knowledge-snapshot/workflow.md +7 -0
- package/runtime/agents/knowledge-author/infra/.gitkeep +1 -0
- package/runtime/agents/knowledge-author/knowledge/context.md +4 -0
- package/runtime/agents/knowledge-author/knowledge/system.md +4 -0
- package/runtime/agents/knowledge-author/templates/.gitkeep +1 -0
- package/runtime/agents/knowledge-curator/AGENTS.md +7 -0
- package/runtime/agents/knowledge-curator/README.md +6 -0
- package/runtime/agents/knowledge-curator/agent.yaml +37 -0
- package/runtime/agents/knowledge-curator/capabilities/curate-knowledge-base/capability.yaml +29 -0
- package/runtime/agents/knowledge-curator/capabilities/curate-knowledge-base/decision-rules.md +6 -0
- package/runtime/agents/knowledge-curator/capabilities/curate-knowledge-base/workflow.md +7 -0
- package/runtime/agents/knowledge-curator/infra/.gitkeep +1 -0
- package/runtime/agents/knowledge-curator/knowledge/context.md +4 -0
- package/runtime/agents/knowledge-curator/knowledge/system.md +4 -0
- package/runtime/agents/knowledge-curator/templates/.gitkeep +1 -0
- package/runtime/agents/knowledge-generator/agent.yaml +13 -3
- package/runtime/agents/knowledge-generator/capabilities/generate-knowledge/capability.yaml +1 -1
- package/runtime/agents/knowledge-infra-builder/AGENTS.md +8 -0
- package/runtime/agents/knowledge-infra-builder/README.md +8 -0
- package/runtime/agents/knowledge-infra-builder/agent.yaml +38 -0
- package/runtime/agents/knowledge-infra-builder/capabilities/create-knowledge-base/capability.yaml +30 -0
- package/runtime/agents/knowledge-infra-builder/capabilities/create-knowledge-base/decision-rules.md +6 -0
- package/runtime/agents/knowledge-infra-builder/capabilities/create-knowledge-base/workflow.md +7 -0
- package/runtime/agents/knowledge-infra-builder/infra/.gitkeep +1 -0
- package/runtime/agents/knowledge-infra-builder/knowledge/context.md +4 -0
- package/runtime/agents/knowledge-infra-builder/knowledge/system.md +4 -0
- package/runtime/agents/knowledge-infra-builder/templates/.gitkeep +1 -0
- package/runtime/agents/knowledge-owner/AGENTS.md +7 -0
- package/runtime/agents/knowledge-owner/README.md +6 -0
- package/runtime/agents/knowledge-owner/agent.yaml +37 -0
- package/runtime/agents/knowledge-owner/capabilities/publish-knowledge-snapshot/capability.yaml +28 -0
- package/runtime/agents/knowledge-owner/capabilities/publish-knowledge-snapshot/decision-rules.md +6 -0
- package/runtime/agents/knowledge-owner/capabilities/publish-knowledge-snapshot/workflow.md +7 -0
- package/runtime/agents/knowledge-owner/infra/.gitkeep +1 -0
- package/runtime/agents/knowledge-owner/knowledge/context.md +4 -0
- package/runtime/agents/knowledge-owner/knowledge/system.md +4 -0
- package/runtime/agents/knowledge-owner/templates/.gitkeep +1 -0
- package/runtime/agents/knowledge-reviewer/AGENTS.md +7 -0
- package/runtime/agents/knowledge-reviewer/README.md +7 -0
- package/runtime/agents/knowledge-reviewer/agent.yaml +36 -0
- package/runtime/agents/knowledge-reviewer/capabilities/review-knowledge-snapshot/capability.yaml +26 -0
- package/runtime/agents/knowledge-reviewer/capabilities/review-knowledge-snapshot/decision-rules.md +6 -0
- package/runtime/agents/knowledge-reviewer/capabilities/review-knowledge-snapshot/workflow.md +7 -0
- package/runtime/agents/knowledge-reviewer/infra/.gitkeep +1 -0
- package/runtime/agents/knowledge-reviewer/knowledge/context.md +4 -0
- package/runtime/agents/knowledge-reviewer/knowledge/system.md +4 -0
- package/runtime/agents/knowledge-reviewer/templates/.gitkeep +1 -0
- package/runtime/agents/local-llm-operator/agent.yaml +6 -4
- package/runtime/agents/local-llm-operator/capabilities/delegate-operational-task/capability.yaml +1 -2
- package/runtime/agents/local-llm-operator/capabilities/inspect-local-models/capability.yaml +1 -2
- package/runtime/agents/local-llm-operator/capabilities/select-local-worker/capability.yaml +1 -2
- package/runtime/agents/local-memory-manager/AGENTS.md +5 -0
- package/runtime/agents/local-memory-manager/README.md +7 -0
- package/runtime/agents/local-memory-manager/agent.yaml +38 -0
- package/runtime/agents/local-memory-manager/capabilities/curate-local-memory/capability.yaml +19 -0
- package/runtime/agents/local-memory-manager/capabilities/curate-local-memory/decision-rules.md +5 -0
- package/runtime/agents/local-memory-manager/capabilities/curate-local-memory/workflow.md +6 -0
- package/runtime/agents/local-memory-manager/capabilities/inspect-local-memory/capability.yaml +19 -0
- package/runtime/agents/local-memory-manager/capabilities/inspect-local-memory/decision-rules.md +5 -0
- package/runtime/agents/local-memory-manager/capabilities/inspect-local-memory/workflow.md +5 -0
- package/runtime/agents/local-memory-manager/infra/.gitkeep +1 -0
- package/runtime/agents/local-memory-manager/knowledge/context.md +4 -0
- package/runtime/agents/local-memory-manager/knowledge/system.md +4 -0
- package/runtime/agents/local-memory-manager/templates/.gitkeep +1 -0
- package/runtime/agents/memory-sync-manager/AGENTS.md +7 -0
- package/runtime/agents/memory-sync-manager/README.md +7 -0
- package/runtime/agents/memory-sync-manager/agent.yaml +37 -0
- package/runtime/agents/memory-sync-manager/capabilities/plan-memory-backup/capability.yaml +29 -0
- package/runtime/agents/memory-sync-manager/capabilities/plan-memory-backup/decision-rules.md +6 -0
- package/runtime/agents/memory-sync-manager/capabilities/plan-memory-backup/workflow.md +7 -0
- package/runtime/agents/memory-sync-manager/infra/.gitkeep +1 -0
- package/runtime/agents/memory-sync-manager/knowledge/context.md +4 -0
- package/runtime/agents/memory-sync-manager/knowledge/system.md +4 -0
- package/runtime/agents/memory-sync-manager/templates/.gitkeep +1 -0
- package/runtime/agents/n1-support-agent/agent.yaml +40 -1
- package/runtime/agents/n2-support-agent/agent.yaml +41 -2
- package/runtime/agents/n2-support-agent/knowledge/policies.yaml +2 -2
- package/runtime/agents/notification-operator/AGENTS.md +11 -0
- package/runtime/agents/notification-operator/README.md +15 -0
- package/runtime/agents/notification-operator/agent.yaml +43 -0
- package/runtime/agents/notification-operator/capabilities/configure-notification-channel/capability.yaml +19 -0
- package/runtime/agents/notification-operator/capabilities/configure-notification-channel/decision-rules.md +6 -0
- package/runtime/agents/notification-operator/capabilities/configure-notification-channel/runner.py +33 -0
- package/runtime/agents/notification-operator/capabilities/configure-notification-channel/workflow.md +6 -0
- package/runtime/agents/notification-operator/capabilities/format-task-completion-notification/capability.yaml +25 -0
- package/runtime/agents/notification-operator/capabilities/format-task-completion-notification/decision-rules.md +7 -0
- package/runtime/agents/notification-operator/capabilities/format-task-completion-notification/runner.py +49 -0
- package/runtime/agents/notification-operator/capabilities/format-task-completion-notification/workflow.md +6 -0
- package/runtime/agents/notification-operator/capabilities/send-task-completion-notification/capability.yaml +27 -0
- package/runtime/agents/notification-operator/capabilities/send-task-completion-notification/decision-rules.md +6 -0
- package/runtime/agents/notification-operator/capabilities/send-task-completion-notification/runner.py +68 -0
- package/runtime/agents/notification-operator/capabilities/send-task-completion-notification/workflow.md +7 -0
- package/runtime/agents/notification-operator/infra/README.md +6 -0
- package/runtime/agents/notification-operator/knowledge/context.md +10 -0
- package/runtime/agents/notification-operator/knowledge/policies.yaml +9 -0
- package/runtime/agents/notification-operator/knowledge/system.md +7 -0
- package/runtime/agents/notification-operator/templates/README.md +6 -0
- package/runtime/agents/notification-operator/tests/test_runners.py +108 -0
- package/runtime/agents/playwright-automation-builder/AGENTS.md +23 -0
- package/runtime/agents/playwright-automation-builder/README.md +43 -0
- package/runtime/agents/playwright-automation-builder/agent.yaml +48 -0
- package/runtime/agents/playwright-automation-builder/capabilities/generate-playwright-project-files/capability.yaml +20 -0
- package/runtime/agents/playwright-automation-builder/capabilities/generate-playwright-project-files/decision-rules.md +6 -0
- package/runtime/agents/playwright-automation-builder/capabilities/generate-playwright-project-files/runner.py +38 -0
- package/runtime/agents/playwright-automation-builder/capabilities/generate-playwright-project-files/workflow.md +6 -0
- package/runtime/agents/playwright-automation-builder/capabilities/generate-playwright-script/capability.yaml +18 -0
- package/runtime/agents/playwright-automation-builder/capabilities/generate-playwright-script/decision-rules.md +6 -0
- package/runtime/agents/playwright-automation-builder/capabilities/generate-playwright-script/runner.py +32 -0
- package/runtime/agents/playwright-automation-builder/capabilities/generate-playwright-script/workflow.md +6 -0
- package/runtime/agents/playwright-automation-builder/capabilities/plan-playwright-automation/capability.yaml +18 -0
- package/runtime/agents/playwright-automation-builder/capabilities/plan-playwright-automation/decision-rules.md +6 -0
- package/runtime/agents/playwright-automation-builder/capabilities/plan-playwright-automation/runner.py +32 -0
- package/runtime/agents/playwright-automation-builder/capabilities/plan-playwright-automation/workflow.md +6 -0
- package/runtime/agents/playwright-automation-builder/capabilities/review-playwright-artifacts/capability.yaml +19 -0
- package/runtime/agents/playwright-automation-builder/capabilities/review-playwright-artifacts/decision-rules.md +6 -0
- package/runtime/agents/playwright-automation-builder/capabilities/review-playwright-artifacts/runner.py +33 -0
- package/runtime/agents/playwright-automation-builder/capabilities/review-playwright-artifacts/workflow.md +6 -0
- package/runtime/agents/playwright-automation-builder/capabilities/run-playwright-check/capability.yaml +22 -0
- package/runtime/agents/playwright-automation-builder/capabilities/run-playwright-check/decision-rules.md +6 -0
- package/runtime/agents/playwright-automation-builder/capabilities/run-playwright-check/runner.py +40 -0
- package/runtime/agents/playwright-automation-builder/capabilities/run-playwright-check/workflow.md +6 -0
- package/runtime/agents/playwright-automation-builder/capabilities/wrap-playwright-as-capability/capability.yaml +22 -0
- package/runtime/agents/playwright-automation-builder/capabilities/wrap-playwright-as-capability/decision-rules.md +6 -0
- package/runtime/agents/playwright-automation-builder/capabilities/wrap-playwright-as-capability/runner.py +42 -0
- package/runtime/agents/playwright-automation-builder/capabilities/wrap-playwright-as-capability/workflow.md +6 -0
- package/runtime/agents/playwright-automation-builder/infra/integrations/playwright-automation/playwright_automation_repository.py +865 -0
- package/runtime/agents/playwright-automation-builder/knowledge/context.md +19 -0
- package/runtime/agents/playwright-automation-builder/knowledge/policies.yaml +25 -0
- package/runtime/agents/playwright-automation-builder/knowledge/system.md +19 -0
- package/runtime/agents/playwright-automation-builder/templates/capability-wrapper.md +4 -0
- package/runtime/agents/playwright-automation-builder/templates/playwright-automation.py +12 -0
- package/runtime/agents/playwright-automation-builder/templates/playwright-readme.md +13 -0
- package/runtime/agents/playwright-automation-builder/templates/playwright-review-report.md +9 -0
- package/runtime/agents/playwright-automation-builder/templates/playwright-test.py +2 -0
- package/runtime/agents/playwright-automation-builder/tests/test_runners.py +261 -0
- package/runtime/agents/postgres-data-analyzer/agent.yaml +13 -2
- package/runtime/agents/presentation-deck-builder/agent.yaml +14 -3
- package/runtime/agents/presentation-deck-builder/capabilities/create-template/capability.yaml +1 -1
- package/runtime/agents/presentation-deck-builder/capabilities/create-template-version/capability.yaml +1 -1
- package/runtime/agents/presentation-deck-builder/capabilities/generate-template-input-file/capability.yaml +1 -1
- package/runtime/agents/presentation-deck-builder/capabilities/refine-template/capability.yaml +1 -1
- package/runtime/agents/presentation-deck-builder/capabilities/register-template/capability.yaml +1 -1
- package/runtime/agents/presentation-deck-builder/knowledge/prompts/create-template.md +1 -1
- package/runtime/agents/presentation-deck-builder/knowledge/prompts/generate-template-input-file.md +1 -1
- package/runtime/agents/provider-configurator/agent.yaml +6 -4
- package/runtime/agents/provider-configurator/capabilities/collect-provider-credentials/capability.yaml +1 -2
- package/runtime/agents/provider-configurator/capabilities/configure-provider-source/capability.yaml +1 -2
- package/runtime/agents/provider-configurator/capabilities/validate-provider-readiness/capability.yaml +1 -2
- package/runtime/agents/pyautogui-automation-builder/AGENTS.md +32 -0
- package/runtime/agents/pyautogui-automation-builder/README.md +44 -0
- package/runtime/agents/pyautogui-automation-builder/agent.yaml +45 -0
- package/runtime/agents/pyautogui-automation-builder/capabilities/generate-pyautogui-project-files/capability.yaml +20 -0
- package/runtime/agents/pyautogui-automation-builder/capabilities/generate-pyautogui-project-files/decision-rules.md +6 -0
- package/runtime/agents/pyautogui-automation-builder/capabilities/generate-pyautogui-project-files/runner.py +39 -0
- package/runtime/agents/pyautogui-automation-builder/capabilities/generate-pyautogui-project-files/workflow.md +7 -0
- package/runtime/agents/pyautogui-automation-builder/capabilities/generate-pyautogui-script/capability.yaml +18 -0
- package/runtime/agents/pyautogui-automation-builder/capabilities/generate-pyautogui-script/decision-rules.md +7 -0
- package/runtime/agents/pyautogui-automation-builder/capabilities/generate-pyautogui-script/runner.py +33 -0
- package/runtime/agents/pyautogui-automation-builder/capabilities/generate-pyautogui-script/workflow.md +7 -0
- package/runtime/agents/pyautogui-automation-builder/capabilities/plan-desktop-automation/capability.yaml +18 -0
- package/runtime/agents/pyautogui-automation-builder/capabilities/plan-desktop-automation/decision-rules.md +8 -0
- package/runtime/agents/pyautogui-automation-builder/capabilities/plan-desktop-automation/runner.py +33 -0
- package/runtime/agents/pyautogui-automation-builder/capabilities/plan-desktop-automation/workflow.md +9 -0
- package/runtime/agents/pyautogui-automation-builder/capabilities/review-pyautogui-script/capability.yaml +20 -0
- package/runtime/agents/pyautogui-automation-builder/capabilities/review-pyautogui-script/decision-rules.md +8 -0
- package/runtime/agents/pyautogui-automation-builder/capabilities/review-pyautogui-script/runner.py +43 -0
- package/runtime/agents/pyautogui-automation-builder/capabilities/review-pyautogui-script/workflow.md +7 -0
- package/runtime/agents/pyautogui-automation-builder/capabilities/wrap-pyautogui-as-capability/capability.yaml +22 -0
- package/runtime/agents/pyautogui-automation-builder/capabilities/wrap-pyautogui-as-capability/decision-rules.md +6 -0
- package/runtime/agents/pyautogui-automation-builder/capabilities/wrap-pyautogui-as-capability/runner.py +43 -0
- package/runtime/agents/pyautogui-automation-builder/capabilities/wrap-pyautogui-as-capability/workflow.md +7 -0
- package/runtime/agents/pyautogui-automation-builder/infra/integrations/pyautogui-automation/pyautogui_automation_repository.py +856 -0
- package/runtime/agents/pyautogui-automation-builder/knowledge/context.md +17 -0
- package/runtime/agents/pyautogui-automation-builder/knowledge/policies.yaml +24 -0
- package/runtime/agents/pyautogui-automation-builder/knowledge/system.md +13 -0
- package/runtime/agents/pyautogui-automation-builder/templates/capability-wrapper.md +3 -0
- package/runtime/agents/pyautogui-automation-builder/templates/pyautogui-automation.py +12 -0
- package/runtime/agents/pyautogui-automation-builder/templates/pyautogui-readme.md +3 -0
- package/runtime/agents/pyautogui-automation-builder/templates/pyautogui-review-report.md +3 -0
- package/runtime/agents/pyautogui-automation-builder/templates/pyautogui-test.py +2 -0
- package/runtime/agents/pyautogui-automation-builder/tests/test_runners.py +376 -0
- package/runtime/agents/python-automation-builder/AGENTS.md +25 -0
- package/runtime/agents/python-automation-builder/README.md +43 -0
- package/runtime/agents/python-automation-builder/agent.yaml +45 -0
- package/runtime/agents/python-automation-builder/capabilities/generate-automation-project-files/capability.yaml +20 -0
- package/runtime/agents/python-automation-builder/capabilities/generate-automation-project-files/decision-rules.md +6 -0
- package/runtime/agents/python-automation-builder/capabilities/generate-automation-project-files/runner.py +39 -0
- package/runtime/agents/python-automation-builder/capabilities/generate-automation-project-files/workflow.md +7 -0
- package/runtime/agents/python-automation-builder/capabilities/generate-python-automation/capability.yaml +18 -0
- package/runtime/agents/python-automation-builder/capabilities/generate-python-automation/decision-rules.md +5 -0
- package/runtime/agents/python-automation-builder/capabilities/generate-python-automation/runner.py +33 -0
- package/runtime/agents/python-automation-builder/capabilities/generate-python-automation/workflow.md +5 -0
- package/runtime/agents/python-automation-builder/capabilities/plan-python-automation/capability.yaml +18 -0
- package/runtime/agents/python-automation-builder/capabilities/plan-python-automation/decision-rules.md +6 -0
- package/runtime/agents/python-automation-builder/capabilities/plan-python-automation/runner.py +33 -0
- package/runtime/agents/python-automation-builder/capabilities/plan-python-automation/workflow.md +6 -0
- package/runtime/agents/python-automation-builder/capabilities/review-python-automation/capability.yaml +20 -0
- package/runtime/agents/python-automation-builder/capabilities/review-python-automation/decision-rules.md +6 -0
- package/runtime/agents/python-automation-builder/capabilities/review-python-automation/runner.py +43 -0
- package/runtime/agents/python-automation-builder/capabilities/review-python-automation/workflow.md +5 -0
- package/runtime/agents/python-automation-builder/capabilities/wrap-automation-as-capability/capability.yaml +22 -0
- package/runtime/agents/python-automation-builder/capabilities/wrap-automation-as-capability/decision-rules.md +6 -0
- package/runtime/agents/python-automation-builder/capabilities/wrap-automation-as-capability/runner.py +43 -0
- package/runtime/agents/python-automation-builder/capabilities/wrap-automation-as-capability/workflow.md +6 -0
- package/runtime/agents/python-automation-builder/infra/integrations/python-automation/python_automation_repository.py +717 -0
- package/runtime/agents/python-automation-builder/knowledge/context.md +15 -0
- package/runtime/agents/python-automation-builder/knowledge/policies.yaml +12 -0
- package/runtime/agents/python-automation-builder/knowledge/system.md +19 -0
- package/runtime/agents/python-automation-builder/templates/automation-readme.md +13 -0
- package/runtime/agents/python-automation-builder/templates/automation-review-report.md +13 -0
- package/runtime/agents/python-automation-builder/templates/automation-test.py +9 -0
- package/runtime/agents/python-automation-builder/templates/automation.py +19 -0
- package/runtime/agents/python-automation-builder/templates/capability-wrapper.md +4 -0
- package/runtime/agents/python-automation-builder/tests/test_runners.py +292 -0
- package/runtime/agents/selenium-automation-builder/AGENTS.md +27 -0
- package/runtime/agents/selenium-automation-builder/README.md +40 -0
- package/runtime/agents/selenium-automation-builder/agent.yaml +45 -0
- package/runtime/agents/selenium-automation-builder/capabilities/generate-selenium-project-files/capability.yaml +20 -0
- package/runtime/agents/selenium-automation-builder/capabilities/generate-selenium-project-files/decision-rules.md +6 -0
- package/runtime/agents/selenium-automation-builder/capabilities/generate-selenium-project-files/runner.py +39 -0
- package/runtime/agents/selenium-automation-builder/capabilities/generate-selenium-project-files/workflow.md +7 -0
- package/runtime/agents/selenium-automation-builder/capabilities/generate-selenium-script/capability.yaml +18 -0
- package/runtime/agents/selenium-automation-builder/capabilities/generate-selenium-script/decision-rules.md +6 -0
- package/runtime/agents/selenium-automation-builder/capabilities/generate-selenium-script/runner.py +33 -0
- package/runtime/agents/selenium-automation-builder/capabilities/generate-selenium-script/workflow.md +6 -0
- package/runtime/agents/selenium-automation-builder/capabilities/plan-selenium-automation/capability.yaml +18 -0
- package/runtime/agents/selenium-automation-builder/capabilities/plan-selenium-automation/decision-rules.md +6 -0
- package/runtime/agents/selenium-automation-builder/capabilities/plan-selenium-automation/runner.py +33 -0
- package/runtime/agents/selenium-automation-builder/capabilities/plan-selenium-automation/workflow.md +6 -0
- package/runtime/agents/selenium-automation-builder/capabilities/review-selenium-script/capability.yaml +20 -0
- package/runtime/agents/selenium-automation-builder/capabilities/review-selenium-script/decision-rules.md +6 -0
- package/runtime/agents/selenium-automation-builder/capabilities/review-selenium-script/runner.py +40 -0
- package/runtime/agents/selenium-automation-builder/capabilities/review-selenium-script/workflow.md +6 -0
- package/runtime/agents/selenium-automation-builder/capabilities/wrap-selenium-as-capability/capability.yaml +22 -0
- package/runtime/agents/selenium-automation-builder/capabilities/wrap-selenium-as-capability/decision-rules.md +6 -0
- package/runtime/agents/selenium-automation-builder/capabilities/wrap-selenium-as-capability/runner.py +43 -0
- package/runtime/agents/selenium-automation-builder/capabilities/wrap-selenium-as-capability/workflow.md +6 -0
- package/runtime/agents/selenium-automation-builder/infra/integrations/selenium-automation/selenium_automation_repository.py +793 -0
- package/runtime/agents/selenium-automation-builder/knowledge/context.md +15 -0
- package/runtime/agents/selenium-automation-builder/knowledge/policies.yaml +17 -0
- package/runtime/agents/selenium-automation-builder/knowledge/system.md +18 -0
- package/runtime/agents/selenium-automation-builder/templates/capability-wrapper.md +4 -0
- package/runtime/agents/selenium-automation-builder/templates/selenium-automation.py +20 -0
- package/runtime/agents/selenium-automation-builder/templates/selenium-readme.md +13 -0
- package/runtime/agents/selenium-automation-builder/templates/selenium-review-report.md +13 -0
- package/runtime/agents/selenium-automation-builder/templates/selenium-test.py +9 -0
- package/runtime/agents/selenium-automation-builder/tests/test_runners.py +282 -0
- package/runtime/agents/shared-memory-curator/AGENTS.md +5 -0
- package/runtime/agents/shared-memory-curator/README.md +6 -0
- package/runtime/agents/shared-memory-curator/agent.yaml +38 -0
- package/runtime/agents/shared-memory-curator/capabilities/create-shared-memory/capability.yaml +19 -0
- package/runtime/agents/shared-memory-curator/capabilities/create-shared-memory/decision-rules.md +5 -0
- package/runtime/agents/shared-memory-curator/capabilities/create-shared-memory/workflow.md +5 -0
- package/runtime/agents/shared-memory-curator/capabilities/publish-shared-submission/capability.yaml +19 -0
- package/runtime/agents/shared-memory-curator/capabilities/publish-shared-submission/decision-rules.md +5 -0
- package/runtime/agents/shared-memory-curator/capabilities/publish-shared-submission/workflow.md +5 -0
- package/runtime/agents/shared-memory-curator/capabilities/review-shared-submission/capability.yaml +19 -0
- package/runtime/agents/shared-memory-curator/capabilities/review-shared-submission/decision-rules.md +5 -0
- package/runtime/agents/shared-memory-curator/capabilities/review-shared-submission/workflow.md +5 -0
- package/runtime/agents/shared-memory-curator/infra/.gitkeep +1 -0
- package/runtime/agents/shared-memory-curator/knowledge/context.md +5 -0
- package/runtime/agents/shared-memory-curator/knowledge/system.md +4 -0
- package/runtime/agents/shared-memory-curator/templates/.gitkeep +1 -0
- package/runtime/agents/software-specification-analyst/agent.yaml +17 -4
- package/runtime/agents/software-specification-analyst/capabilities/analyze-multiple-projects/capability.yaml +1 -1
- package/runtime/agents/software-specification-analyst/capabilities/analyze-project-context/capability.yaml +1 -1
- package/runtime/agents/software-specification-analyst/capabilities/conduct-requirements-interview/capability.yaml +1 -1
- package/runtime/agents/software-specification-analyst/capabilities/create-complete-spec/capability.yaml +1 -1
- package/runtime/agents/software-specification-analyst/capabilities/create-final-spec-from-analysis/capability.yaml +1 -1
- package/runtime/agents/software-specification-analyst/capabilities/create-functional-spec/capability.yaml +11 -0
- package/runtime/agents/software-specification-analyst/capabilities/create-technical-spec/capability.yaml +12 -0
- package/runtime/agents/software-specification-analyst/capabilities/refine-analysis-with-feedback/capability.yaml +1 -1
- package/runtime/agents/software-specification-analyst/capabilities/write-user-stories/capability.yaml +12 -0
- package/runtime/agents/sqlserver-change-operator/agent.yaml +12 -1
- package/runtime/agents/sqlserver-data-analyzer/agent.yaml +13 -2
- package/runtime/agents/supabase-project-analyst/AGENTS.md +29 -0
- package/runtime/agents/supabase-project-analyst/README.md +23 -0
- package/runtime/agents/supabase-project-analyst/agent.yaml +53 -0
- package/runtime/agents/supabase-project-analyst/capabilities/audit-auth-security/capability.yaml +18 -0
- package/runtime/agents/supabase-project-analyst/capabilities/audit-auth-security/decision-rules.md +5 -0
- package/runtime/agents/supabase-project-analyst/capabilities/audit-auth-security/runner.py +32 -0
- package/runtime/agents/supabase-project-analyst/capabilities/audit-auth-security/workflow.md +6 -0
- package/runtime/agents/supabase-project-analyst/capabilities/audit-rls-policies/capability.yaml +18 -0
- package/runtime/agents/supabase-project-analyst/capabilities/audit-rls-policies/decision-rules.md +6 -0
- package/runtime/agents/supabase-project-analyst/capabilities/audit-rls-policies/runner.py +32 -0
- package/runtime/agents/supabase-project-analyst/capabilities/audit-rls-policies/workflow.md +7 -0
- package/runtime/agents/supabase-project-analyst/capabilities/audit-storage-policies/capability.yaml +18 -0
- package/runtime/agents/supabase-project-analyst/capabilities/audit-storage-policies/decision-rules.md +5 -0
- package/runtime/agents/supabase-project-analyst/capabilities/audit-storage-policies/runner.py +32 -0
- package/runtime/agents/supabase-project-analyst/capabilities/audit-storage-policies/workflow.md +6 -0
- package/runtime/agents/supabase-project-analyst/capabilities/generate-supabase-report/capability.yaml +18 -0
- package/runtime/agents/supabase-project-analyst/capabilities/generate-supabase-report/decision-rules.md +6 -0
- package/runtime/agents/supabase-project-analyst/capabilities/generate-supabase-report/runner.py +32 -0
- package/runtime/agents/supabase-project-analyst/capabilities/generate-supabase-report/workflow.md +6 -0
- package/runtime/agents/supabase-project-analyst/capabilities/inspect-supabase-project/capability.yaml +19 -0
- package/runtime/agents/supabase-project-analyst/capabilities/inspect-supabase-project/decision-rules.md +6 -0
- package/runtime/agents/supabase-project-analyst/capabilities/inspect-supabase-project/runner.py +36 -0
- package/runtime/agents/supabase-project-analyst/capabilities/inspect-supabase-project/workflow.md +7 -0
- package/runtime/agents/supabase-project-analyst/capabilities/plan-supabase-fix/capability.yaml +18 -0
- package/runtime/agents/supabase-project-analyst/capabilities/plan-supabase-fix/decision-rules.md +6 -0
- package/runtime/agents/supabase-project-analyst/capabilities/plan-supabase-fix/runner.py +32 -0
- package/runtime/agents/supabase-project-analyst/capabilities/plan-supabase-fix/workflow.md +6 -0
- package/runtime/agents/supabase-project-analyst/capabilities/review-migrations/capability.yaml +18 -0
- package/runtime/agents/supabase-project-analyst/capabilities/review-migrations/decision-rules.md +6 -0
- package/runtime/agents/supabase-project-analyst/capabilities/review-migrations/runner.py +32 -0
- package/runtime/agents/supabase-project-analyst/capabilities/review-migrations/workflow.md +5 -0
- package/runtime/agents/supabase-project-analyst/infra/integrations/supabase-project/supabase_project_repository.py +589 -0
- package/runtime/agents/supabase-project-analyst/knowledge/context.md +11 -0
- package/runtime/agents/supabase-project-analyst/knowledge/policies.yaml +24 -0
- package/runtime/agents/supabase-project-analyst/knowledge/system.md +10 -0
- package/runtime/agents/supabase-project-analyst/templates/supabase-audit.md +3 -0
- package/runtime/agents/supabase-project-analyst/templates/supabase-fix-plan.md +3 -0
- package/runtime/agents/supabase-project-analyst/templates/supabase-inspection.md +3 -0
- package/runtime/agents/supabase-project-analyst/templates/supabase-report.md +3 -0
- package/runtime/agents/supabase-project-analyst/tests/test_runners.py +239 -0
- package/runtime/agents/task-orchestrator/agent.yaml +25 -3
- package/runtime/agents/task-orchestrator/capabilities/plan-task/capability.yaml +1 -2
- package/runtime/agents/task-orchestrator/capabilities/select-specialists/capability.yaml +1 -2
- package/runtime/agents/technical-integration-analyst/agent.yaml +15 -2
- package/runtime/agents/topdesk-orchestrator/agent.yaml +10 -2
- package/runtime/cli/README.md +35 -4
- package/runtime/cli/aikit/__init__.py +1 -1
- package/runtime/cli/aikit/acceptance.py +166 -0
- package/runtime/cli/aikit/agent_executor.py +26 -3
- package/runtime/cli/aikit/agent_registry.py +247 -6
- package/runtime/cli/aikit/agentic_commands.py +158 -0
- package/runtime/cli/aikit/app_home.py +1 -0
- package/runtime/cli/aikit/architecture.py +84 -0
- package/runtime/cli/aikit/audit.py +187 -8
- package/runtime/cli/aikit/autonomy.py +237 -0
- package/runtime/cli/aikit/capability_runtime.py +522 -0
- package/runtime/cli/aikit/catalog.py +516 -0
- package/runtime/cli/aikit/cli_dispatch.py +1554 -0
- package/runtime/cli/aikit/cli_parser.py +547 -0
- package/runtime/cli/aikit/collaboration.py +359 -0
- package/runtime/cli/aikit/configuration_orchestrator.py +52 -26
- package/runtime/cli/aikit/contribution.py +235 -0
- package/runtime/cli/aikit/core/__init__.py +1 -0
- package/runtime/cli/aikit/core/capability_contract.py +112 -0
- package/runtime/cli/aikit/core/requests.py +69 -0
- package/runtime/cli/aikit/core/runtime.py +64 -0
- package/runtime/cli/aikit/diagnostics.py +8 -2
- package/runtime/cli/aikit/doctor_runtime.py +164 -0
- package/runtime/cli/aikit/errors.py +7 -0
- package/runtime/cli/aikit/eval.py +504 -0
- package/runtime/cli/aikit/execution_reviewer.py +21 -0
- package/runtime/cli/aikit/extensions.py +140 -0
- package/runtime/cli/aikit/fallback.py +1 -0
- package/runtime/cli/aikit/github_pr.py +23 -0
- package/runtime/cli/aikit/guardrails.py +25 -10
- package/runtime/cli/aikit/human_output.py +1332 -0
- package/runtime/cli/aikit/impact_map.py +294 -0
- package/runtime/cli/aikit/interactive_wizard.py +227 -0
- package/runtime/cli/aikit/knowledge_base.py +1067 -0
- package/runtime/cli/aikit/llm.py +12 -4
- package/runtime/cli/aikit/local_artifacts.py +444 -0
- package/runtime/cli/aikit/local_llm.py +161 -0
- package/runtime/cli/aikit/local_llm_operator.py +35 -1
- package/runtime/cli/aikit/main.py +23 -2833
- package/runtime/cli/aikit/mcp_manifest.py +1027 -0
- package/runtime/cli/aikit/mcp_server.py +132 -0
- package/runtime/cli/aikit/mcp_tools.py +900 -0
- package/runtime/cli/aikit/memory.py +405 -0
- package/runtime/cli/aikit/mini_brain.py +246 -0
- package/runtime/cli/aikit/model_router.py +182 -18
- package/runtime/cli/aikit/module_controller.py +335 -0
- package/runtime/cli/aikit/natural_prompt_runtime.py +662 -0
- package/runtime/cli/aikit/notifications.py +716 -2
- package/runtime/cli/aikit/ollama.py +64 -14
- package/runtime/cli/aikit/onboarding.py +551 -0
- package/runtime/cli/aikit/orchestrator.py +809 -119
- package/runtime/cli/aikit/output.py +130 -2
- package/runtime/cli/aikit/permissions.py +14 -4
- package/runtime/cli/aikit/prompt_injection.py +68 -0
- package/runtime/cli/aikit/review_gate.py +38 -6
- package/runtime/cli/aikit/roadmap.py +195 -0
- package/runtime/cli/aikit/roadmap_cli.py +70 -0
- package/runtime/cli/aikit/router.py +41 -12
- package/runtime/cli/aikit/router_explain.py +152 -0
- package/runtime/cli/aikit/runtime_paths.py +11 -0
- package/runtime/cli/aikit/secrets.py +114 -0
- package/runtime/cli/aikit/sessions.py +88 -2
- package/runtime/cli/aikit/setup_wizard_payload.py +35 -0
- package/runtime/cli/aikit/shared_memory.py +415 -0
- package/runtime/cli/aikit/sources.py +298 -50
- package/runtime/cli/aikit/specialist_readiness.py +152 -0
- package/runtime/cli/aikit/tasks.py +553 -22
- package/runtime/cli/aikit/team.py +380 -0
- package/runtime/cli/aikit/toolchain.py +7 -2
- package/runtime/cli/aikit/wizard_state.py +15 -1
- package/runtime/cli/aikit/workflows.py +216 -0
- package/runtime/cli/aikit/write_policy.py +108 -0
- package/runtime/plugins/claude-code-ai-devkit/README.md +17 -0
- package/runtime/plugins/claude-code-ai-devkit/agents/README.md +29 -2
- package/runtime/plugins/claude-code-ai-devkit/agents/agent-devkit-db-analyst.md +44 -0
- package/runtime/plugins/claude-code-ai-devkit/agents/agent-devkit-execution-reviewer.md +38 -0
- package/runtime/plugins/claude-code-ai-devkit/agents/agent-devkit-pr-reviewer.md +42 -0
- package/runtime/plugins/claude-code-ai-devkit/agents/agent-devkit-repo-explorer.md +40 -0
- package/runtime/plugins/claude-code-ai-devkit/agents/agent-devkit-support-triage.md +43 -0
- package/runtime/plugins/claude-code-ai-devkit/plugin.json +1 -1
- package/runtime/plugins/claude-code-ai-devkit/skills/ai-devkit-router/SKILL.md +16 -0
- package/runtime/plugins/claude-skill-ai-devkit/ai-devkit/SKILL.md +1 -0
- package/runtime/plugins/claude-skill-ai-devkit/ai-devkit/references/subagents.md +21 -0
- package/runtime/plugins/claude-skill-ai-devkit/plugin.json +1 -1
- package/runtime/providers/azure-devops.yaml +9 -0
- package/runtime/providers/github.yaml +4 -0
- package/runtime/providers/knowledge-github.yaml +40 -0
- package/runtime/providers/knowledge-google-drive.yaml +32 -0
- package/runtime/providers/knowledge-local.yaml +26 -0
- package/runtime/providers/knowledge-notion.yaml +32 -0
- package/runtime/providers/knowledge-obsidian.yaml +24 -0
- package/runtime/providers/knowledge-onedrive.yaml +36 -0
- package/runtime/providers/knowledge-s3.yaml +45 -0
- package/runtime/providers/knowledge-sharepoint.yaml +39 -0
- package/runtime/providers/knowledge-supabase.yaml +43 -0
- package/runtime/providers/knowledge-vector.yaml +39 -0
- package/runtime/providers/local-notification.yaml +5 -2
- package/runtime/providers/local-scheduler.yaml +1 -1
- package/runtime/providers/supabase.yaml +46 -0
- package/runtime/requirements.txt +6 -0
- package/runtime/scripts/docker-cli-qa.sh +453 -0
- package/runtime/scripts/release-catalog-snapshot.json +594 -0
- package/runtime/scripts/release-gate.py +189 -8
- package/runtime/scripts/validate-repo.py +312 -0
- package/runtime/tooling/toolchain.yaml +92 -0
- package/runtime/vendor/skills/napkin/napkin.md +32 -12
- package/runtime/workflows/azure-card-analysis/README.md +3 -0
- package/runtime/workflows/azure-card-analysis/workflow.yaml +30 -0
- package/runtime/workflows/daily-pr-review/README.md +3 -0
- package/runtime/workflows/daily-pr-review/workflow.yaml +31 -0
- package/runtime/workflows/incident-analysis/README.md +3 -0
- package/runtime/workflows/incident-analysis/workflow.yaml +33 -0
- package/runtime/workflows/release-prep/README.md +3 -0
- package/runtime/workflows/release-prep/workflow.yaml +30 -0
|
@@ -0,0 +1,1027 @@
|
|
|
1
|
+
"""MCP manifest and tool schemas for Agent DevKit."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing import Any
|
|
6
|
+
|
|
7
|
+
from cli.aikit import __version__
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
MCP_PROTOCOL_VERSION = "2025-11-25"
|
|
11
|
+
MCP_SERVER_NAME = "agent-devkit"
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
TOOL_DEFINITIONS: list[dict[str, Any]] = [
|
|
15
|
+
{
|
|
16
|
+
"name": "agent_devkit_agents_list",
|
|
17
|
+
"description": "List available Agent DevKit agents.",
|
|
18
|
+
"inputSchema": {"type": "object", "properties": {}, "additionalProperties": False},
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"name": "agent_devkit_capabilities_list",
|
|
22
|
+
"description": "List available capabilities, optionally filtered by agent id.",
|
|
23
|
+
"inputSchema": {
|
|
24
|
+
"type": "object",
|
|
25
|
+
"properties": {"agent_id": {"type": "string"}},
|
|
26
|
+
"additionalProperties": False,
|
|
27
|
+
},
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"name": "agent_devkit_capability_inspect",
|
|
31
|
+
"description": "Inspect one capability contract.",
|
|
32
|
+
"inputSchema": {
|
|
33
|
+
"type": "object",
|
|
34
|
+
"properties": {
|
|
35
|
+
"agent_id": {"type": "string"},
|
|
36
|
+
"capability_id": {"type": "string"},
|
|
37
|
+
},
|
|
38
|
+
"required": ["agent_id", "capability_id"],
|
|
39
|
+
"additionalProperties": False,
|
|
40
|
+
},
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "agent_devkit_capability_run",
|
|
44
|
+
"description": "Run a read-only capability or dry-run a non-read-only capability through Agent DevKit core.",
|
|
45
|
+
"inputSchema": {
|
|
46
|
+
"type": "object",
|
|
47
|
+
"properties": {
|
|
48
|
+
"agent_id": {"type": "string"},
|
|
49
|
+
"capability_id": {"type": "string"},
|
|
50
|
+
"args": {"type": "array", "items": {"type": "string"}},
|
|
51
|
+
"inputs": {"type": "object"},
|
|
52
|
+
"source_id": {"type": "string"},
|
|
53
|
+
"dry_run": {"type": "boolean"},
|
|
54
|
+
"request_id": {"type": "string"},
|
|
55
|
+
},
|
|
56
|
+
"required": ["agent_id", "capability_id"],
|
|
57
|
+
"additionalProperties": False,
|
|
58
|
+
},
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"name": "agent_devkit_doctor",
|
|
62
|
+
"description": "Return local Agent DevKit diagnostics.",
|
|
63
|
+
"inputSchema": {
|
|
64
|
+
"type": "object",
|
|
65
|
+
"properties": {
|
|
66
|
+
"project": {"type": "string"},
|
|
67
|
+
"home": {"type": "string"},
|
|
68
|
+
"scope": {"type": "string"},
|
|
69
|
+
},
|
|
70
|
+
"additionalProperties": False,
|
|
71
|
+
},
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "agent_devkit_onboarding_status",
|
|
75
|
+
"description": "Return the no-argument Agent DevKit onboarding status used by `agent` startup.",
|
|
76
|
+
"inputSchema": {"type": "object", "properties": {}, "additionalProperties": False},
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "agent_devkit_memory_show",
|
|
80
|
+
"description": "Show local Agent DevKit memory usage and memory file paths without exposing secrets.",
|
|
81
|
+
"inputSchema": {
|
|
82
|
+
"type": "object",
|
|
83
|
+
"properties": {
|
|
84
|
+
"agent_id": {"type": "string"},
|
|
85
|
+
"source_id": {"type": "string"},
|
|
86
|
+
},
|
|
87
|
+
"additionalProperties": False,
|
|
88
|
+
},
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "agent_devkit_memory_path",
|
|
92
|
+
"description": "Ensure local memory files exist and return their paths.",
|
|
93
|
+
"inputSchema": {"type": "object", "properties": {}, "additionalProperties": False},
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"name": "agent_devkit_memory_reset",
|
|
97
|
+
"description": "Reset local Agent DevKit memory, sessions, tasks or cache. This is a local-only write.",
|
|
98
|
+
"inputSchema": {
|
|
99
|
+
"type": "object",
|
|
100
|
+
"properties": {
|
|
101
|
+
"all": {"type": "boolean"},
|
|
102
|
+
"agent_id": {"type": "string"},
|
|
103
|
+
"source_id": {"type": "string"},
|
|
104
|
+
"sessions": {"type": "boolean"},
|
|
105
|
+
"tasks": {"type": "boolean"},
|
|
106
|
+
"cache": {"type": "boolean"},
|
|
107
|
+
},
|
|
108
|
+
"additionalProperties": False,
|
|
109
|
+
},
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"name": "agent_devkit_memory_backup_create",
|
|
113
|
+
"description": "Create a local backup of Agent DevKit memory and personality. This does not upload remotely.",
|
|
114
|
+
"inputSchema": {
|
|
115
|
+
"type": "object",
|
|
116
|
+
"properties": {
|
|
117
|
+
"title": {"type": "string"},
|
|
118
|
+
"encrypted": {"type": "boolean"},
|
|
119
|
+
"passphrase_env": {"type": "string"},
|
|
120
|
+
},
|
|
121
|
+
"additionalProperties": False,
|
|
122
|
+
},
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"name": "agent_devkit_memory_backup_list",
|
|
126
|
+
"description": "List local Agent DevKit memory backups.",
|
|
127
|
+
"inputSchema": {"type": "object", "properties": {}, "additionalProperties": False},
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"name": "agent_devkit_memory_backup_restore",
|
|
131
|
+
"description": "Restore a local Agent DevKit memory backup. Requires yes=true to execute.",
|
|
132
|
+
"inputSchema": {
|
|
133
|
+
"type": "object",
|
|
134
|
+
"properties": {
|
|
135
|
+
"backup_id": {"type": "string"},
|
|
136
|
+
"file": {"type": "string"},
|
|
137
|
+
"passphrase_env": {"type": "string"},
|
|
138
|
+
"yes": {"type": "boolean"},
|
|
139
|
+
},
|
|
140
|
+
"additionalProperties": False,
|
|
141
|
+
},
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"name": "agent_devkit_memory_backup_delete",
|
|
145
|
+
"description": "Delete a local Agent DevKit memory backup. Requires yes=true to execute.",
|
|
146
|
+
"inputSchema": {
|
|
147
|
+
"type": "object",
|
|
148
|
+
"properties": {
|
|
149
|
+
"backup_id": {"type": "string"},
|
|
150
|
+
"yes": {"type": "boolean"},
|
|
151
|
+
},
|
|
152
|
+
"required": ["backup_id"],
|
|
153
|
+
"additionalProperties": False,
|
|
154
|
+
},
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"name": "agent_devkit_shared_memory_list",
|
|
158
|
+
"description": "List owner-reviewed shared memories stored in the local Agent DevKit home.",
|
|
159
|
+
"inputSchema": {"type": "object", "properties": {}, "additionalProperties": False},
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"name": "agent_devkit_shared_memory_status",
|
|
163
|
+
"description": "Inspect one owner-reviewed shared memory workspace.",
|
|
164
|
+
"inputSchema": {
|
|
165
|
+
"type": "object",
|
|
166
|
+
"properties": {"memory_id": {"type": "string"}},
|
|
167
|
+
"required": ["memory_id"],
|
|
168
|
+
"additionalProperties": False,
|
|
169
|
+
},
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"name": "agent_devkit_shared_memory_create",
|
|
173
|
+
"description": "Create a local shared memory workspace and contributor key. This is a local-only write.",
|
|
174
|
+
"inputSchema": {
|
|
175
|
+
"type": "object",
|
|
176
|
+
"properties": {"title": {"type": "string"}},
|
|
177
|
+
"additionalProperties": False,
|
|
178
|
+
},
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"name": "agent_devkit_shared_memory_read",
|
|
182
|
+
"description": "Read accepted shared memory entries without exposing owner keys.",
|
|
183
|
+
"inputSchema": {
|
|
184
|
+
"type": "object",
|
|
185
|
+
"properties": {
|
|
186
|
+
"memory_id": {"type": "string"},
|
|
187
|
+
"entry_id": {"type": "string"},
|
|
188
|
+
"key": {"type": "string"},
|
|
189
|
+
},
|
|
190
|
+
"required": ["memory_id"],
|
|
191
|
+
"additionalProperties": False,
|
|
192
|
+
},
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"name": "agent_devkit_shared_memory_submit",
|
|
196
|
+
"description": "Submit a contribution to shared memory pending owner review. This is a local-only write.",
|
|
197
|
+
"inputSchema": {
|
|
198
|
+
"type": "object",
|
|
199
|
+
"properties": {
|
|
200
|
+
"memory_id": {"type": "string"},
|
|
201
|
+
"title": {"type": "string"},
|
|
202
|
+
"content": {"type": "string"},
|
|
203
|
+
"key": {"type": "string"},
|
|
204
|
+
},
|
|
205
|
+
"required": ["memory_id", "content", "key"],
|
|
206
|
+
"additionalProperties": False,
|
|
207
|
+
},
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"name": "agent_devkit_shared_memory_review",
|
|
211
|
+
"description": "Review a pending shared memory contribution without publishing it.",
|
|
212
|
+
"inputSchema": {
|
|
213
|
+
"type": "object",
|
|
214
|
+
"properties": {
|
|
215
|
+
"memory_id": {"type": "string"},
|
|
216
|
+
"submission_id": {"type": "string"},
|
|
217
|
+
},
|
|
218
|
+
"required": ["memory_id", "submission_id"],
|
|
219
|
+
"additionalProperties": False,
|
|
220
|
+
},
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"name": "agent_devkit_shared_memory_publish",
|
|
224
|
+
"description": "Publish an approved shared memory contribution. This is a local-only write.",
|
|
225
|
+
"inputSchema": {
|
|
226
|
+
"type": "object",
|
|
227
|
+
"properties": {
|
|
228
|
+
"memory_id": {"type": "string"},
|
|
229
|
+
"submission_id": {"type": "string"},
|
|
230
|
+
"yes": {"type": "boolean"},
|
|
231
|
+
"owner_key": {"type": "string"},
|
|
232
|
+
},
|
|
233
|
+
"required": ["memory_id", "submission_id"],
|
|
234
|
+
"additionalProperties": False,
|
|
235
|
+
},
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"name": "agent_devkit_personality_show",
|
|
239
|
+
"description": "Show the local Agent DevKit personality and public identity.",
|
|
240
|
+
"inputSchema": {"type": "object", "properties": {}, "additionalProperties": False},
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"name": "agent_devkit_personality_update",
|
|
244
|
+
"description": "Update local Agent DevKit personality fields. This is a local-only write.",
|
|
245
|
+
"inputSchema": {
|
|
246
|
+
"type": "object",
|
|
247
|
+
"properties": {
|
|
248
|
+
"agent_name": {"type": "string"},
|
|
249
|
+
"user_name": {"type": "string"},
|
|
250
|
+
"language": {"type": "string"},
|
|
251
|
+
"tone": {"type": "string"},
|
|
252
|
+
"detail_level": {"type": "string"},
|
|
253
|
+
},
|
|
254
|
+
"additionalProperties": False,
|
|
255
|
+
},
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"name": "agent_devkit_personality_reset",
|
|
259
|
+
"description": "Reset local Agent DevKit personality to defaults. This is a local-only write.",
|
|
260
|
+
"inputSchema": {"type": "object", "properties": {}, "additionalProperties": False},
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"name": "agent_devkit_task_list",
|
|
264
|
+
"description": "List local scheduled tasks without running them.",
|
|
265
|
+
"inputSchema": {"type": "object", "properties": {}, "additionalProperties": False},
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"name": "agent_devkit_task_show",
|
|
269
|
+
"description": "Show one local scheduled task.",
|
|
270
|
+
"inputSchema": {
|
|
271
|
+
"type": "object",
|
|
272
|
+
"properties": {"task_id": {"type": "string"}},
|
|
273
|
+
"required": ["task_id"],
|
|
274
|
+
"additionalProperties": False,
|
|
275
|
+
},
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"name": "agent_devkit_task_run_dry_run",
|
|
279
|
+
"description": "Preview one local scheduled task run without executing it.",
|
|
280
|
+
"inputSchema": {
|
|
281
|
+
"type": "object",
|
|
282
|
+
"properties": {"task_id": {"type": "string"}},
|
|
283
|
+
"required": ["task_id"],
|
|
284
|
+
"additionalProperties": False,
|
|
285
|
+
},
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"name": "agent_devkit_scheduler_run_once_dry_run",
|
|
289
|
+
"description": "Preview due local scheduled tasks without executing them.",
|
|
290
|
+
"inputSchema": {"type": "object", "properties": {}, "additionalProperties": False},
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"name": "agent_devkit_notifications_doctor",
|
|
294
|
+
"description": "Diagnose local notification support without sending notifications.",
|
|
295
|
+
"inputSchema": {"type": "object", "properties": {}, "additionalProperties": False},
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"name": "agent_devkit_notifications_list_events",
|
|
299
|
+
"description": "List supported local notification events.",
|
|
300
|
+
"inputSchema": {"type": "object", "properties": {}, "additionalProperties": False},
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"name": "agent_devkit_notifications_list_channels",
|
|
304
|
+
"description": "List supported and future notification channels.",
|
|
305
|
+
"inputSchema": {"type": "object", "properties": {}, "additionalProperties": False},
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"name": "agent_devkit_notifications_format",
|
|
309
|
+
"description": "Format a notification payload without sending it.",
|
|
310
|
+
"inputSchema": {
|
|
311
|
+
"type": "object",
|
|
312
|
+
"properties": {
|
|
313
|
+
"title": {"type": "string"},
|
|
314
|
+
"message": {"type": "string"},
|
|
315
|
+
"summary": {"type": "string"},
|
|
316
|
+
"event": {"type": "string"},
|
|
317
|
+
"status": {"type": "string"},
|
|
318
|
+
"severity": {"type": "string"},
|
|
319
|
+
"task_id": {"type": "string"},
|
|
320
|
+
"origin": {"type": "string"},
|
|
321
|
+
},
|
|
322
|
+
"additionalProperties": False,
|
|
323
|
+
},
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"name": "agent_devkit_catalog_list",
|
|
327
|
+
"description": "List deterministic Agent DevKit catalog items with optional filters.",
|
|
328
|
+
"inputSchema": {
|
|
329
|
+
"type": "object",
|
|
330
|
+
"properties": {
|
|
331
|
+
"type": {"type": "string"},
|
|
332
|
+
"provider": {"type": "string"},
|
|
333
|
+
"status": {"type": "string"},
|
|
334
|
+
"write_policy": {"type": "string"},
|
|
335
|
+
"readiness": {"type": "string"},
|
|
336
|
+
},
|
|
337
|
+
"additionalProperties": False,
|
|
338
|
+
},
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"name": "agent_devkit_catalog_search",
|
|
342
|
+
"description": "Search agents, capabilities and providers in the deterministic Agent DevKit catalog.",
|
|
343
|
+
"inputSchema": {
|
|
344
|
+
"type": "object",
|
|
345
|
+
"properties": {
|
|
346
|
+
"query": {"type": "string"},
|
|
347
|
+
"type": {"type": "string"},
|
|
348
|
+
},
|
|
349
|
+
"required": ["query"],
|
|
350
|
+
"additionalProperties": False,
|
|
351
|
+
},
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"name": "agent_devkit_catalog_show",
|
|
355
|
+
"description": "Show one deterministic Agent DevKit catalog item.",
|
|
356
|
+
"inputSchema": {
|
|
357
|
+
"type": "object",
|
|
358
|
+
"properties": {
|
|
359
|
+
"id": {"type": "string"},
|
|
360
|
+
"type": {"type": "string"},
|
|
361
|
+
},
|
|
362
|
+
"required": ["id"],
|
|
363
|
+
"additionalProperties": False,
|
|
364
|
+
},
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"name": "agent_devkit_route_explain",
|
|
368
|
+
"description": "Explain how Agent DevKit would route a prompt without executing it.",
|
|
369
|
+
"inputSchema": {
|
|
370
|
+
"type": "object",
|
|
371
|
+
"properties": {"prompt": {"type": "string"}},
|
|
372
|
+
"required": ["prompt"],
|
|
373
|
+
"additionalProperties": False,
|
|
374
|
+
},
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"name": "agent_devkit_agent_prompt_dry_run",
|
|
378
|
+
"description": "Build a dry-run agentic execution plan for a natural-language prompt.",
|
|
379
|
+
"inputSchema": {
|
|
380
|
+
"type": "object",
|
|
381
|
+
"properties": {"prompt": {"type": "string"}},
|
|
382
|
+
"required": ["prompt"],
|
|
383
|
+
"additionalProperties": False,
|
|
384
|
+
},
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"name": "agent_devkit_agentic_plan",
|
|
388
|
+
"description": "Build the explicit v0.2.1 agentic plan contract for a natural-language prompt.",
|
|
389
|
+
"inputSchema": {
|
|
390
|
+
"type": "object",
|
|
391
|
+
"properties": {"prompt": {"type": "string"}},
|
|
392
|
+
"required": ["prompt"],
|
|
393
|
+
"additionalProperties": False,
|
|
394
|
+
},
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"name": "agent_devkit_eval_list",
|
|
398
|
+
"description": "List deterministic Agent DevKit eval suites.",
|
|
399
|
+
"inputSchema": {"type": "object", "properties": {}, "additionalProperties": False},
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"name": "agent_devkit_eval_run",
|
|
403
|
+
"description": "Run one deterministic Agent DevKit eval suite.",
|
|
404
|
+
"inputSchema": {
|
|
405
|
+
"type": "object",
|
|
406
|
+
"properties": {"suite": {"type": "string"}},
|
|
407
|
+
"required": ["suite"],
|
|
408
|
+
"additionalProperties": False,
|
|
409
|
+
},
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"name": "agent_devkit_secrets_doctor",
|
|
413
|
+
"description": "Diagnose secret reference backends without exposing values.",
|
|
414
|
+
"inputSchema": {"type": "object", "properties": {}, "additionalProperties": False},
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"name": "agent_devkit_workflow_list",
|
|
418
|
+
"description": "List installable Agent DevKit workflows.",
|
|
419
|
+
"inputSchema": {"type": "object", "properties": {}, "additionalProperties": False},
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"name": "agent_devkit_workflow_show",
|
|
423
|
+
"description": "Show one installable Agent DevKit workflow.",
|
|
424
|
+
"inputSchema": {
|
|
425
|
+
"type": "object",
|
|
426
|
+
"properties": {"workflow_id": {"type": "string"}},
|
|
427
|
+
"required": ["workflow_id"],
|
|
428
|
+
"additionalProperties": False,
|
|
429
|
+
},
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"name": "agent_devkit_workflow_run_dry_run",
|
|
433
|
+
"description": "Build a dry-run payload for an installable workflow.",
|
|
434
|
+
"inputSchema": {
|
|
435
|
+
"type": "object",
|
|
436
|
+
"properties": {"workflow_id": {"type": "string"}},
|
|
437
|
+
"required": ["workflow_id"],
|
|
438
|
+
"additionalProperties": False,
|
|
439
|
+
},
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
"name": "agent_devkit_local_llm_list",
|
|
443
|
+
"description": "List local LLM operational workers.",
|
|
444
|
+
"inputSchema": {"type": "object", "properties": {}, "additionalProperties": False},
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"name": "agent_devkit_local_llm_doctor",
|
|
448
|
+
"description": "Diagnose local LLM/Ollama readiness without installing models.",
|
|
449
|
+
"inputSchema": {"type": "object", "properties": {}, "additionalProperties": False},
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
"name": "agent_devkit_local_llm_models",
|
|
453
|
+
"description": "List local LLM models known to Ollama when available.",
|
|
454
|
+
"inputSchema": {"type": "object", "properties": {}, "additionalProperties": False},
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"name": "agent_devkit_local_artifacts_list",
|
|
458
|
+
"description": "List local skills, scripts, automations and local agents stored in Agent DevKit home.",
|
|
459
|
+
"inputSchema": {"type": "object", "properties": {}, "additionalProperties": False},
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"name": "agent_devkit_local_skill_create",
|
|
463
|
+
"description": "Create a local Agent DevKit skill artifact.",
|
|
464
|
+
"inputSchema": {
|
|
465
|
+
"type": "object",
|
|
466
|
+
"properties": {
|
|
467
|
+
"id": {"type": "string"},
|
|
468
|
+
"description": {"type": "string"},
|
|
469
|
+
"force": {"type": "boolean"},
|
|
470
|
+
},
|
|
471
|
+
"additionalProperties": False,
|
|
472
|
+
},
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
"name": "agent_devkit_local_skill_list",
|
|
476
|
+
"description": "List local Agent DevKit skill artifacts.",
|
|
477
|
+
"inputSchema": {"type": "object", "properties": {}, "additionalProperties": False},
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
"name": "agent_devkit_local_skill_show",
|
|
481
|
+
"description": "Show one local Agent DevKit skill artifact.",
|
|
482
|
+
"inputSchema": {
|
|
483
|
+
"type": "object",
|
|
484
|
+
"properties": {"id": {"type": "string"}},
|
|
485
|
+
"required": ["id"],
|
|
486
|
+
"additionalProperties": False,
|
|
487
|
+
},
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
"name": "agent_devkit_local_script_create",
|
|
491
|
+
"description": "Create a local Agent DevKit shell script artifact.",
|
|
492
|
+
"inputSchema": {
|
|
493
|
+
"type": "object",
|
|
494
|
+
"properties": {
|
|
495
|
+
"id": {"type": "string"},
|
|
496
|
+
"command": {"type": "string"},
|
|
497
|
+
"force": {"type": "boolean"},
|
|
498
|
+
},
|
|
499
|
+
"additionalProperties": False,
|
|
500
|
+
},
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"name": "agent_devkit_local_script_list",
|
|
504
|
+
"description": "List local Agent DevKit shell script artifacts.",
|
|
505
|
+
"inputSchema": {"type": "object", "properties": {}, "additionalProperties": False},
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"name": "agent_devkit_local_script_run_dry_run",
|
|
509
|
+
"description": "Plan execution of one local Agent DevKit script without running it.",
|
|
510
|
+
"inputSchema": {
|
|
511
|
+
"type": "object",
|
|
512
|
+
"properties": {"id": {"type": "string"}},
|
|
513
|
+
"required": ["id"],
|
|
514
|
+
"additionalProperties": False,
|
|
515
|
+
},
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
"name": "agent_devkit_local_agent_create",
|
|
519
|
+
"description": "Create a local Agent DevKit specialist agent scaffold.",
|
|
520
|
+
"inputSchema": {
|
|
521
|
+
"type": "object",
|
|
522
|
+
"properties": {
|
|
523
|
+
"id": {"type": "string"},
|
|
524
|
+
"description": {"type": "string"},
|
|
525
|
+
"force": {"type": "boolean"},
|
|
526
|
+
},
|
|
527
|
+
"additionalProperties": False,
|
|
528
|
+
},
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"name": "agent_devkit_local_agent_list",
|
|
532
|
+
"description": "List local Agent DevKit specialist agent scaffolds.",
|
|
533
|
+
"inputSchema": {"type": "object", "properties": {}, "additionalProperties": False},
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
"name": "agent_devkit_local_agent_show",
|
|
537
|
+
"description": "Show one local Agent DevKit specialist agent scaffold.",
|
|
538
|
+
"inputSchema": {
|
|
539
|
+
"type": "object",
|
|
540
|
+
"properties": {"id": {"type": "string"}},
|
|
541
|
+
"required": ["id"],
|
|
542
|
+
"additionalProperties": False,
|
|
543
|
+
},
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
"name": "agent_devkit_local_agent_validate",
|
|
547
|
+
"description": "Validate one local Agent DevKit specialist agent scaffold.",
|
|
548
|
+
"inputSchema": {
|
|
549
|
+
"type": "object",
|
|
550
|
+
"properties": {"id": {"type": "string"}},
|
|
551
|
+
"required": ["id"],
|
|
552
|
+
"additionalProperties": False,
|
|
553
|
+
},
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"name": "agent_devkit_local_automation_create",
|
|
557
|
+
"description": "Create a local Agent DevKit automation artifact in the user home.",
|
|
558
|
+
"inputSchema": {
|
|
559
|
+
"type": "object",
|
|
560
|
+
"properties": {
|
|
561
|
+
"id": {"type": "string"},
|
|
562
|
+
"title": {"type": "string"},
|
|
563
|
+
"prompt": {"type": "string"},
|
|
564
|
+
"command": {"type": "string"},
|
|
565
|
+
"every": {"type": "string"},
|
|
566
|
+
"cron": {"type": "string"},
|
|
567
|
+
"force": {"type": "boolean"},
|
|
568
|
+
},
|
|
569
|
+
"additionalProperties": False,
|
|
570
|
+
},
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"name": "agent_devkit_local_automation_list",
|
|
574
|
+
"description": "List local Agent DevKit automation artifacts.",
|
|
575
|
+
"inputSchema": {"type": "object", "properties": {}, "additionalProperties": False},
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
"name": "agent_devkit_local_automation_show",
|
|
579
|
+
"description": "Show one local Agent DevKit automation artifact.",
|
|
580
|
+
"inputSchema": {
|
|
581
|
+
"type": "object",
|
|
582
|
+
"properties": {"id": {"type": "string"}},
|
|
583
|
+
"required": ["id"],
|
|
584
|
+
"additionalProperties": False,
|
|
585
|
+
},
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"name": "agent_devkit_local_automation_enable",
|
|
589
|
+
"description": "Enable one local Agent DevKit automation artifact.",
|
|
590
|
+
"inputSchema": {
|
|
591
|
+
"type": "object",
|
|
592
|
+
"properties": {"id": {"type": "string"}},
|
|
593
|
+
"required": ["id"],
|
|
594
|
+
"additionalProperties": False,
|
|
595
|
+
},
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"name": "agent_devkit_local_automation_disable",
|
|
599
|
+
"description": "Disable one local Agent DevKit automation artifact.",
|
|
600
|
+
"inputSchema": {
|
|
601
|
+
"type": "object",
|
|
602
|
+
"properties": {"id": {"type": "string"}},
|
|
603
|
+
"required": ["id"],
|
|
604
|
+
"additionalProperties": False,
|
|
605
|
+
},
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
"name": "agent_devkit_local_automation_validate",
|
|
609
|
+
"description": "Validate one local Agent DevKit automation artifact.",
|
|
610
|
+
"inputSchema": {
|
|
611
|
+
"type": "object",
|
|
612
|
+
"properties": {"id": {"type": "string"}},
|
|
613
|
+
"required": ["id"],
|
|
614
|
+
"additionalProperties": False,
|
|
615
|
+
},
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
"name": "agent_devkit_team_status",
|
|
619
|
+
"description": "Inspect project-local team profile status without exposing secrets.",
|
|
620
|
+
"inputSchema": {
|
|
621
|
+
"type": "object",
|
|
622
|
+
"properties": {"project": {"type": "string"}},
|
|
623
|
+
"additionalProperties": False,
|
|
624
|
+
},
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
"name": "agent_devkit_team_doctor",
|
|
628
|
+
"description": "Run project-local team profile diagnostics without exposing secrets.",
|
|
629
|
+
"inputSchema": {
|
|
630
|
+
"type": "object",
|
|
631
|
+
"properties": {"project": {"type": "string"}},
|
|
632
|
+
"additionalProperties": False,
|
|
633
|
+
},
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"name": "agent_devkit_team_init",
|
|
637
|
+
"description": "Create a project-local team profile file without storing secrets.",
|
|
638
|
+
"inputSchema": {
|
|
639
|
+
"type": "object",
|
|
640
|
+
"properties": {
|
|
641
|
+
"project": {"type": "string"},
|
|
642
|
+
"force": {"type": "boolean"},
|
|
643
|
+
},
|
|
644
|
+
"additionalProperties": False,
|
|
645
|
+
},
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"name": "agent_devkit_team_onboard",
|
|
649
|
+
"description": "Return the project-local team onboarding checklist.",
|
|
650
|
+
"inputSchema": {
|
|
651
|
+
"type": "object",
|
|
652
|
+
"properties": {"project": {"type": "string"}},
|
|
653
|
+
"additionalProperties": False,
|
|
654
|
+
},
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
"name": "agent_devkit_team_profile_list",
|
|
658
|
+
"description": "List profiles in the project-local team profile file.",
|
|
659
|
+
"inputSchema": {
|
|
660
|
+
"type": "object",
|
|
661
|
+
"properties": {"project": {"type": "string"}},
|
|
662
|
+
"additionalProperties": False,
|
|
663
|
+
},
|
|
664
|
+
},
|
|
665
|
+
{
|
|
666
|
+
"name": "agent_devkit_team_profile_show",
|
|
667
|
+
"description": "Show one project-local team profile without exposing secrets.",
|
|
668
|
+
"inputSchema": {
|
|
669
|
+
"type": "object",
|
|
670
|
+
"properties": {
|
|
671
|
+
"project": {"type": "string"},
|
|
672
|
+
"profile_id": {"type": "string"},
|
|
673
|
+
},
|
|
674
|
+
"additionalProperties": False,
|
|
675
|
+
},
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"name": "agent_devkit_team_profile_export",
|
|
679
|
+
"description": "Export one project-local team profile, or return a write plan when path is omitted.",
|
|
680
|
+
"inputSchema": {
|
|
681
|
+
"type": "object",
|
|
682
|
+
"properties": {
|
|
683
|
+
"project": {"type": "string"},
|
|
684
|
+
"profile_id": {"type": "string"},
|
|
685
|
+
"path": {"type": "string"},
|
|
686
|
+
},
|
|
687
|
+
"additionalProperties": False,
|
|
688
|
+
},
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
"name": "agent_devkit_team_profile_import",
|
|
692
|
+
"description": "Import a secret-free team profile into a project-local team profile file.",
|
|
693
|
+
"inputSchema": {
|
|
694
|
+
"type": "object",
|
|
695
|
+
"properties": {
|
|
696
|
+
"project": {"type": "string"},
|
|
697
|
+
"path": {"type": "string"},
|
|
698
|
+
},
|
|
699
|
+
"required": ["path"],
|
|
700
|
+
"additionalProperties": False,
|
|
701
|
+
},
|
|
702
|
+
},
|
|
703
|
+
{
|
|
704
|
+
"name": "agent_devkit_knowledge_doctor",
|
|
705
|
+
"description": "Run file-first knowledge base diagnostics for the current project.",
|
|
706
|
+
"inputSchema": {
|
|
707
|
+
"type": "object",
|
|
708
|
+
"properties": {"project": {"type": "string"}},
|
|
709
|
+
"additionalProperties": False,
|
|
710
|
+
},
|
|
711
|
+
},
|
|
712
|
+
{
|
|
713
|
+
"name": "agent_devkit_knowledge_init",
|
|
714
|
+
"description": "Initialize a file-first shared knowledge base in a project.",
|
|
715
|
+
"inputSchema": {
|
|
716
|
+
"type": "object",
|
|
717
|
+
"properties": {
|
|
718
|
+
"project": {"type": "string"},
|
|
719
|
+
"force": {"type": "boolean"},
|
|
720
|
+
},
|
|
721
|
+
"additionalProperties": False,
|
|
722
|
+
},
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
"name": "agent_devkit_knowledge_index",
|
|
726
|
+
"description": "Rebuild the local lexical index for a file-first knowledge base.",
|
|
727
|
+
"inputSchema": {
|
|
728
|
+
"type": "object",
|
|
729
|
+
"properties": {"project": {"type": "string"}},
|
|
730
|
+
"additionalProperties": False,
|
|
731
|
+
},
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
"name": "agent_devkit_knowledge_search",
|
|
735
|
+
"description": "Search the local file-first knowledge base lexical index.",
|
|
736
|
+
"inputSchema": {
|
|
737
|
+
"type": "object",
|
|
738
|
+
"properties": {
|
|
739
|
+
"project": {"type": "string"},
|
|
740
|
+
"query": {"type": "string"},
|
|
741
|
+
},
|
|
742
|
+
"required": ["query"],
|
|
743
|
+
"additionalProperties": False,
|
|
744
|
+
},
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
"name": "agent_devkit_knowledge_curate",
|
|
748
|
+
"description": "Run local curation checks over a file-first knowledge base.",
|
|
749
|
+
"inputSchema": {
|
|
750
|
+
"type": "object",
|
|
751
|
+
"properties": {"project": {"type": "string"}},
|
|
752
|
+
"additionalProperties": False,
|
|
753
|
+
},
|
|
754
|
+
},
|
|
755
|
+
{
|
|
756
|
+
"name": "agent_devkit_knowledge_sync",
|
|
757
|
+
"description": "Return the current local-only knowledge sync status.",
|
|
758
|
+
"inputSchema": {
|
|
759
|
+
"type": "object",
|
|
760
|
+
"properties": {"project": {"type": "string"}},
|
|
761
|
+
"additionalProperties": False,
|
|
762
|
+
},
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
"name": "agent_devkit_knowledge_snapshot_create",
|
|
766
|
+
"description": "Create a sanitized pending knowledge snapshot in a file-first knowledge base.",
|
|
767
|
+
"inputSchema": {
|
|
768
|
+
"type": "object",
|
|
769
|
+
"properties": {
|
|
770
|
+
"project": {"type": "string"},
|
|
771
|
+
"title": {"type": "string"},
|
|
772
|
+
"content": {"type": "string"},
|
|
773
|
+
"from_file": {"type": "string"},
|
|
774
|
+
"type": {"type": "string"},
|
|
775
|
+
},
|
|
776
|
+
"required": ["title"],
|
|
777
|
+
"additionalProperties": False,
|
|
778
|
+
},
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
"name": "agent_devkit_knowledge_snapshot_list",
|
|
782
|
+
"description": "List pending, accepted and rejected knowledge snapshots.",
|
|
783
|
+
"inputSchema": {
|
|
784
|
+
"type": "object",
|
|
785
|
+
"properties": {"project": {"type": "string"}},
|
|
786
|
+
"additionalProperties": False,
|
|
787
|
+
},
|
|
788
|
+
},
|
|
789
|
+
{
|
|
790
|
+
"name": "agent_devkit_knowledge_snapshot_show",
|
|
791
|
+
"description": "Show one knowledge snapshot content and metadata.",
|
|
792
|
+
"inputSchema": {
|
|
793
|
+
"type": "object",
|
|
794
|
+
"properties": {
|
|
795
|
+
"project": {"type": "string"},
|
|
796
|
+
"snapshot_id": {"type": "string"},
|
|
797
|
+
},
|
|
798
|
+
"required": ["snapshot_id"],
|
|
799
|
+
"additionalProperties": False,
|
|
800
|
+
},
|
|
801
|
+
},
|
|
802
|
+
{
|
|
803
|
+
"name": "agent_devkit_knowledge_snapshot_score",
|
|
804
|
+
"description": "Score a pending knowledge snapshot for usefulness, safety and duplication.",
|
|
805
|
+
"inputSchema": {
|
|
806
|
+
"type": "object",
|
|
807
|
+
"properties": {
|
|
808
|
+
"project": {"type": "string"},
|
|
809
|
+
"snapshot_id": {"type": "string"},
|
|
810
|
+
},
|
|
811
|
+
"required": ["snapshot_id"],
|
|
812
|
+
"additionalProperties": False,
|
|
813
|
+
},
|
|
814
|
+
},
|
|
815
|
+
{
|
|
816
|
+
"name": "agent_devkit_knowledge_snapshot_submit",
|
|
817
|
+
"description": "Submit a knowledge snapshot for owner review when it passes local score gates.",
|
|
818
|
+
"inputSchema": {
|
|
819
|
+
"type": "object",
|
|
820
|
+
"properties": {
|
|
821
|
+
"project": {"type": "string"},
|
|
822
|
+
"snapshot_id": {"type": "string"},
|
|
823
|
+
},
|
|
824
|
+
"required": ["snapshot_id"],
|
|
825
|
+
"additionalProperties": False,
|
|
826
|
+
},
|
|
827
|
+
},
|
|
828
|
+
{
|
|
829
|
+
"name": "agent_devkit_knowledge_review_list",
|
|
830
|
+
"description": "List knowledge snapshot reviews.",
|
|
831
|
+
"inputSchema": {
|
|
832
|
+
"type": "object",
|
|
833
|
+
"properties": {"project": {"type": "string"}},
|
|
834
|
+
"additionalProperties": False,
|
|
835
|
+
},
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
"name": "agent_devkit_knowledge_review",
|
|
839
|
+
"description": "Review one pending knowledge snapshot without publishing it.",
|
|
840
|
+
"inputSchema": {
|
|
841
|
+
"type": "object",
|
|
842
|
+
"properties": {
|
|
843
|
+
"project": {"type": "string"},
|
|
844
|
+
"snapshot_id": {"type": "string"},
|
|
845
|
+
},
|
|
846
|
+
"required": ["snapshot_id"],
|
|
847
|
+
"additionalProperties": False,
|
|
848
|
+
},
|
|
849
|
+
},
|
|
850
|
+
{
|
|
851
|
+
"name": "agent_devkit_knowledge_publish",
|
|
852
|
+
"description": "Publish an approved knowledge snapshot. Requires yes=true and the configured owner agent.",
|
|
853
|
+
"inputSchema": {
|
|
854
|
+
"type": "object",
|
|
855
|
+
"properties": {
|
|
856
|
+
"project": {"type": "string"},
|
|
857
|
+
"snapshot_id": {"type": "string"},
|
|
858
|
+
"yes": {"type": "boolean"},
|
|
859
|
+
"owner_agent": {"type": "string"},
|
|
860
|
+
},
|
|
861
|
+
"required": ["snapshot_id"],
|
|
862
|
+
"additionalProperties": False,
|
|
863
|
+
},
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
"name": "agent_devkit_knowledge_base_create",
|
|
867
|
+
"description": "Create a file-first knowledge base in a project directory with a canonical knowledge provider.",
|
|
868
|
+
"inputSchema": {
|
|
869
|
+
"type": "object",
|
|
870
|
+
"properties": {
|
|
871
|
+
"project": {"type": "string"},
|
|
872
|
+
"provider": {"type": "string"},
|
|
873
|
+
"force": {"type": "boolean"},
|
|
874
|
+
},
|
|
875
|
+
"additionalProperties": False,
|
|
876
|
+
},
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
"name": "agent_devkit_knowledge_base_join",
|
|
880
|
+
"description": "Create local config for joining an existing knowledge base id without remote sync.",
|
|
881
|
+
"inputSchema": {
|
|
882
|
+
"type": "object",
|
|
883
|
+
"properties": {
|
|
884
|
+
"project": {"type": "string"},
|
|
885
|
+
"kb_id": {"type": "string"},
|
|
886
|
+
"provider": {"type": "string"},
|
|
887
|
+
"force": {"type": "boolean"},
|
|
888
|
+
},
|
|
889
|
+
"required": ["kb_id"],
|
|
890
|
+
"additionalProperties": False,
|
|
891
|
+
},
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
"name": "agent_devkit_knowledge_base_status",
|
|
895
|
+
"description": "Inspect file-first knowledge base status for a project directory.",
|
|
896
|
+
"inputSchema": {
|
|
897
|
+
"type": "object",
|
|
898
|
+
"properties": {"project": {"type": "string"}},
|
|
899
|
+
"additionalProperties": False,
|
|
900
|
+
},
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
"name": "agent_devkit_knowledge_base_tokens",
|
|
904
|
+
"description": "List knowledge base token references without returning token values.",
|
|
905
|
+
"inputSchema": {
|
|
906
|
+
"type": "object",
|
|
907
|
+
"properties": {"project": {"type": "string"}},
|
|
908
|
+
"additionalProperties": False,
|
|
909
|
+
},
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
"name": "agent_devkit_knowledge_base_rotate_token",
|
|
913
|
+
"description": "Rotate a knowledge base token reference fingerprint without exposing token values.",
|
|
914
|
+
"inputSchema": {
|
|
915
|
+
"type": "object",
|
|
916
|
+
"properties": {
|
|
917
|
+
"project": {"type": "string"},
|
|
918
|
+
"scope": {"type": "string"},
|
|
919
|
+
},
|
|
920
|
+
"required": ["scope"],
|
|
921
|
+
"additionalProperties": False,
|
|
922
|
+
},
|
|
923
|
+
},
|
|
924
|
+
{
|
|
925
|
+
"name": "agent_devkit_roadmap",
|
|
926
|
+
"description": "Return the deterministic Agent DevKit roadmap payload.",
|
|
927
|
+
"inputSchema": {"type": "object", "properties": {}, "additionalProperties": False},
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
"name": "agent_devkit_source_list",
|
|
931
|
+
"description": "List configured sources without exposing secrets.",
|
|
932
|
+
"inputSchema": {"type": "object", "properties": {}, "additionalProperties": False},
|
|
933
|
+
},
|
|
934
|
+
{
|
|
935
|
+
"name": "agent_devkit_source_status",
|
|
936
|
+
"description": "Inspect source readiness without exposing secrets.",
|
|
937
|
+
"inputSchema": {
|
|
938
|
+
"type": "object",
|
|
939
|
+
"properties": {"source_id": {"type": "string"}},
|
|
940
|
+
"additionalProperties": False,
|
|
941
|
+
},
|
|
942
|
+
},
|
|
943
|
+
{
|
|
944
|
+
"name": "agent_devkit_wizard_show",
|
|
945
|
+
"description": "Show a pending setup wizard.",
|
|
946
|
+
"inputSchema": {
|
|
947
|
+
"type": "object",
|
|
948
|
+
"properties": {"wizard_id": {"type": "string"}},
|
|
949
|
+
"required": ["wizard_id"],
|
|
950
|
+
"additionalProperties": False,
|
|
951
|
+
},
|
|
952
|
+
},
|
|
953
|
+
{
|
|
954
|
+
"name": "agent_devkit_wizard_answer",
|
|
955
|
+
"description": "Answer a pending setup wizard question.",
|
|
956
|
+
"inputSchema": {
|
|
957
|
+
"type": "object",
|
|
958
|
+
"properties": {
|
|
959
|
+
"wizard_id": {"type": "string"},
|
|
960
|
+
"answer": {"type": "string"},
|
|
961
|
+
},
|
|
962
|
+
"required": ["wizard_id", "answer"],
|
|
963
|
+
"additionalProperties": False,
|
|
964
|
+
},
|
|
965
|
+
},
|
|
966
|
+
]
|
|
967
|
+
|
|
968
|
+
|
|
969
|
+
def mcp_manifest() -> dict[str, Any]:
|
|
970
|
+
return {
|
|
971
|
+
"kind": "mcp-manifest",
|
|
972
|
+
"status": "ok",
|
|
973
|
+
"schema_version": "ai-devkit.mcp-manifest/v1",
|
|
974
|
+
"protocol_version": MCP_PROTOCOL_VERSION,
|
|
975
|
+
"transport": "stdio",
|
|
976
|
+
"server": {
|
|
977
|
+
"name": MCP_SERVER_NAME,
|
|
978
|
+
"version": __version__,
|
|
979
|
+
},
|
|
980
|
+
"tools": mcp_tools(),
|
|
981
|
+
"host_config": {
|
|
982
|
+
"mcpServers": {
|
|
983
|
+
MCP_SERVER_NAME: {
|
|
984
|
+
"command": "agent",
|
|
985
|
+
"args": ["mcp", "serve"],
|
|
986
|
+
}
|
|
987
|
+
}
|
|
988
|
+
},
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
|
|
992
|
+
def mcp_tools_payload() -> dict[str, Any]:
|
|
993
|
+
return {
|
|
994
|
+
"kind": "mcp-tools",
|
|
995
|
+
"status": "ok",
|
|
996
|
+
"protocol_version": MCP_PROTOCOL_VERSION,
|
|
997
|
+
"transport": "stdio",
|
|
998
|
+
"tools": mcp_tools(),
|
|
999
|
+
}
|
|
1000
|
+
|
|
1001
|
+
|
|
1002
|
+
def mcp_tools() -> list[dict[str, Any]]:
|
|
1003
|
+
return [dict(tool) for tool in TOOL_DEFINITIONS]
|
|
1004
|
+
|
|
1005
|
+
|
|
1006
|
+
def mcp_doctor() -> dict[str, Any]:
|
|
1007
|
+
return {
|
|
1008
|
+
"kind": "mcp-doctor",
|
|
1009
|
+
"status": "ok",
|
|
1010
|
+
"protocol_version": MCP_PROTOCOL_VERSION,
|
|
1011
|
+
"transport": "stdio",
|
|
1012
|
+
"server": {
|
|
1013
|
+
"name": MCP_SERVER_NAME,
|
|
1014
|
+
"version": __version__,
|
|
1015
|
+
},
|
|
1016
|
+
"tools": {
|
|
1017
|
+
"count": len(TOOL_DEFINITIONS),
|
|
1018
|
+
"names": [tool["name"] for tool in TOOL_DEFINITIONS],
|
|
1019
|
+
},
|
|
1020
|
+
"checks": {
|
|
1021
|
+
"stdio_transport": True,
|
|
1022
|
+
"json_rpc": True,
|
|
1023
|
+
"core_runtime": True,
|
|
1024
|
+
"secrets_redacted": True,
|
|
1025
|
+
"host_specific_dependency": False,
|
|
1026
|
+
},
|
|
1027
|
+
}
|