agent-devkit 0.1.5 → 0.2.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 +14 -2
- package/package.json +1 -1
- package/runtime/README.md +127 -6
- package/runtime/agent +5 -0
- package/runtime/agents/README.md +34 -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/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/AGENTS.md +8 -0
- package/runtime/agents/execution-reviewer/README.md +13 -0
- package/runtime/agents/execution-reviewer/agent.yaml +27 -0
- package/runtime/agents/execution-reviewer/capabilities/review-agent-result/capability.yaml +14 -0
- package/runtime/agents/execution-reviewer/capabilities/review-agent-result/decision-rules.md +6 -0
- package/runtime/agents/execution-reviewer/capabilities/review-agent-result/workflow.md +7 -0
- package/runtime/agents/execution-reviewer/capabilities/review-final-output/capability.yaml +14 -0
- package/runtime/agents/execution-reviewer/capabilities/review-final-output/decision-rules.md +6 -0
- package/runtime/agents/execution-reviewer/capabilities/review-final-output/workflow.md +7 -0
- package/runtime/agents/execution-reviewer/capabilities/review-plan/capability.yaml +14 -0
- package/runtime/agents/execution-reviewer/capabilities/review-plan/decision-rules.md +6 -0
- package/runtime/agents/execution-reviewer/capabilities/review-plan/workflow.md +7 -0
- package/runtime/agents/execution-reviewer/infra/README.md +4 -0
- package/runtime/agents/execution-reviewer/knowledge/context.md +6 -0
- package/runtime/agents/execution-reviewer/knowledge/system.md +18 -0
- package/runtime/agents/execution-reviewer/templates/README.md +4 -0
- 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-generator/agent.yaml +13 -3
- package/runtime/agents/knowledge-generator/capabilities/generate-knowledge/capability.yaml +1 -1
- package/runtime/agents/local-llm-operator/AGENTS.md +8 -0
- package/runtime/agents/local-llm-operator/README.md +12 -0
- package/runtime/agents/local-llm-operator/agent.yaml +28 -0
- package/runtime/agents/local-llm-operator/capabilities/delegate-operational-task/capability.yaml +14 -0
- package/runtime/agents/local-llm-operator/capabilities/delegate-operational-task/decision-rules.md +6 -0
- package/runtime/agents/local-llm-operator/capabilities/delegate-operational-task/workflow.md +7 -0
- package/runtime/agents/local-llm-operator/capabilities/inspect-local-models/capability.yaml +14 -0
- package/runtime/agents/local-llm-operator/capabilities/inspect-local-models/decision-rules.md +5 -0
- package/runtime/agents/local-llm-operator/capabilities/inspect-local-models/workflow.md +6 -0
- package/runtime/agents/local-llm-operator/capabilities/select-local-worker/capability.yaml +14 -0
- package/runtime/agents/local-llm-operator/capabilities/select-local-worker/decision-rules.md +6 -0
- package/runtime/agents/local-llm-operator/capabilities/select-local-worker/workflow.md +7 -0
- package/runtime/agents/local-llm-operator/infra/README.md +4 -0
- package/runtime/agents/local-llm-operator/knowledge/context.md +6 -0
- package/runtime/agents/local-llm-operator/knowledge/system.md +18 -0
- package/runtime/agents/local-llm-operator/templates/README.md +4 -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/AGENTS.md +8 -0
- package/runtime/agents/provider-configurator/README.md +5 -0
- package/runtime/agents/provider-configurator/agent.yaml +27 -0
- package/runtime/agents/provider-configurator/capabilities/collect-provider-credentials/capability.yaml +14 -0
- package/runtime/agents/provider-configurator/capabilities/collect-provider-credentials/decision-rules.md +6 -0
- package/runtime/agents/provider-configurator/capabilities/collect-provider-credentials/workflow.md +7 -0
- package/runtime/agents/provider-configurator/capabilities/configure-provider-source/capability.yaml +14 -0
- package/runtime/agents/provider-configurator/capabilities/configure-provider-source/decision-rules.md +6 -0
- package/runtime/agents/provider-configurator/capabilities/configure-provider-source/workflow.md +8 -0
- package/runtime/agents/provider-configurator/capabilities/validate-provider-readiness/capability.yaml +14 -0
- package/runtime/agents/provider-configurator/capabilities/validate-provider-readiness/decision-rules.md +6 -0
- package/runtime/agents/provider-configurator/capabilities/validate-provider-readiness/workflow.md +7 -0
- package/runtime/agents/provider-configurator/infra/README.md +5 -0
- package/runtime/agents/provider-configurator/knowledge/context.md +8 -0
- package/runtime/agents/provider-configurator/knowledge/system.md +19 -0
- package/runtime/agents/provider-configurator/templates/README.md +4 -0
- 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/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/AGENTS.md +8 -0
- package/runtime/agents/task-orchestrator/README.md +7 -0
- package/runtime/agents/task-orchestrator/agent.yaml +53 -0
- package/runtime/agents/task-orchestrator/capabilities/coordinate-execution/capability.yaml +15 -0
- package/runtime/agents/task-orchestrator/capabilities/coordinate-execution/decision-rules.md +6 -0
- package/runtime/agents/task-orchestrator/capabilities/coordinate-execution/workflow.md +7 -0
- package/runtime/agents/task-orchestrator/capabilities/plan-task/capability.yaml +14 -0
- package/runtime/agents/task-orchestrator/capabilities/plan-task/decision-rules.md +6 -0
- package/runtime/agents/task-orchestrator/capabilities/plan-task/workflow.md +8 -0
- package/runtime/agents/task-orchestrator/capabilities/select-specialists/capability.yaml +14 -0
- package/runtime/agents/task-orchestrator/capabilities/select-specialists/decision-rules.md +6 -0
- package/runtime/agents/task-orchestrator/capabilities/select-specialists/workflow.md +7 -0
- package/runtime/agents/task-orchestrator/infra/README.md +5 -0
- package/runtime/agents/task-orchestrator/knowledge/context.md +9 -0
- package/runtime/agents/task-orchestrator/knowledge/system.md +20 -0
- package/runtime/agents/task-orchestrator/templates/README.md +4 -0
- package/runtime/agents/technical-integration-analyst/agent.yaml +15 -2
- package/runtime/agents/topdesk-orchestrator/agent.yaml +10 -2
- package/runtime/cli/README.md +76 -11
- package/runtime/cli/aikit/__init__.py +1 -1
- package/runtime/cli/aikit/acceptance.py +166 -0
- package/runtime/cli/aikit/agent_executor.py +89 -0
- package/runtime/cli/aikit/agent_registry.py +319 -0
- package/runtime/cli/aikit/app_home.py +87 -2
- package/runtime/cli/aikit/architecture.py +84 -0
- package/runtime/cli/aikit/audit.py +216 -3
- package/runtime/cli/aikit/autonomy.py +237 -0
- package/runtime/cli/aikit/capability_runtime.py +522 -0
- package/runtime/cli/aikit/catalog.py +246 -0
- package/runtime/cli/aikit/cli_dispatch.py +1078 -0
- package/runtime/cli/aikit/cli_parser.py +409 -0
- package/runtime/cli/aikit/collaboration.py +359 -0
- package/runtime/cli/aikit/configuration_orchestrator.py +52 -26
- package/runtime/cli/aikit/contribution.py +105 -0
- package/runtime/cli/aikit/control_router.py +298 -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/decision_store.py +17 -0
- package/runtime/cli/aikit/diagnostics.py +10 -3
- package/runtime/cli/aikit/doctor_runtime.py +79 -0
- package/runtime/cli/aikit/errors.py +7 -0
- package/runtime/cli/aikit/eval.py +158 -0
- package/runtime/cli/aikit/execution_reviewer.py +195 -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 +1026 -0
- package/runtime/cli/aikit/impact_map.py +294 -0
- package/runtime/cli/aikit/install.py +4 -3
- package/runtime/cli/aikit/interactive_wizard.py +79 -0
- package/runtime/cli/aikit/local_llm_operator.py +146 -0
- package/runtime/cli/aikit/lock.py +4 -1
- package/runtime/cli/aikit/main.py +11 -2561
- package/runtime/cli/aikit/mcp_manifest.py +229 -0
- package/runtime/cli/aikit/mcp_server.py +132 -0
- package/runtime/cli/aikit/mcp_tools.py +262 -0
- package/runtime/cli/aikit/mini_brain.py +227 -0
- package/runtime/cli/aikit/model_router.py +193 -20
- package/runtime/cli/aikit/module_controller.py +335 -0
- package/runtime/cli/aikit/natural_prompt_runtime.py +538 -0
- package/runtime/cli/aikit/notifications.py +716 -2
- package/runtime/cli/aikit/ollama.py +1 -0
- package/runtime/cli/aikit/orchestrator.py +1225 -0
- package/runtime/cli/aikit/output.py +63 -2
- package/runtime/cli/aikit/permissions.py +14 -4
- package/runtime/cli/aikit/prompt_injection.py +57 -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 +113 -0
- package/runtime/cli/aikit/sessions.py +125 -2
- package/runtime/cli/aikit/setup_wizard_payload.py +32 -0
- package/runtime/cli/aikit/sources.py +298 -46
- package/runtime/cli/aikit/tasks.py +449 -21
- package/runtime/cli/aikit/wizard_state.py +517 -0
- package/runtime/cli/aikit/workflows.py +115 -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/local-notification.yaml +5 -2
- package/runtime/providers/local-scheduler.yaml +1 -1
- package/runtime/providers/supabase.yaml +46 -0
- package/runtime/scripts/release-catalog-snapshot.json +543 -0
- package/runtime/scripts/release-gate.py +141 -1
- package/runtime/scripts/validate-repo.py +312 -0
- package/runtime/vendor/skills/napkin/napkin.md +15 -9
package/README.md
CHANGED
|
@@ -26,7 +26,7 @@ agent doctor
|
|
|
26
26
|
Expected version for this release:
|
|
27
27
|
|
|
28
28
|
```text
|
|
29
|
-
agent 0.
|
|
29
|
+
agent 0.2.0
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
## Quick Start
|
|
@@ -41,6 +41,18 @@ agent llm list
|
|
|
41
41
|
agent commands list
|
|
42
42
|
```
|
|
43
43
|
|
|
44
|
+
Agent DevKit `v0.2.0` also includes deterministic runtime discovery and
|
|
45
|
+
integration commands:
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
agent roadmap
|
|
49
|
+
agent catalog search pr
|
|
50
|
+
agent route explain "review the PRs waiting for me"
|
|
51
|
+
agent eval run routing
|
|
52
|
+
agent secrets doctor
|
|
53
|
+
agent mcp tools
|
|
54
|
+
```
|
|
55
|
+
|
|
44
56
|
Install project-local host artifacts for Codex, Claude Code and Claude
|
|
45
57
|
Desktop/Claude.ai:
|
|
46
58
|
|
|
@@ -259,7 +271,7 @@ agent "desative o azure devops por enquanto"
|
|
|
259
271
|
agent "reative o ollama"
|
|
260
272
|
```
|
|
261
273
|
|
|
262
|
-
Decisions are stored under `~/.
|
|
274
|
+
Decisions are stored under `~/.agent-devkit/config/decisions.json`; secret values
|
|
263
275
|
are not stored there.
|
|
264
276
|
|
|
265
277
|
## Configure LLM Backends
|
package/package.json
CHANGED
package/runtime/README.md
CHANGED
|
@@ -44,6 +44,18 @@ agent commands list
|
|
|
44
44
|
agent doctor
|
|
45
45
|
```
|
|
46
46
|
|
|
47
|
+
Na `v0.2.0`, o runtime tambem expoe superficies deterministicas para
|
|
48
|
+
descoberta, avaliacao e integracao por hosts:
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
agent roadmap
|
|
52
|
+
agent catalog search pr
|
|
53
|
+
agent route explain "revise as prs que recebi hoje"
|
|
54
|
+
agent eval run routing
|
|
55
|
+
agent secrets doctor
|
|
56
|
+
agent mcp tools
|
|
57
|
+
```
|
|
58
|
+
|
|
47
59
|
Instale os artefatos locais do Agent DevKit no projeto em que voce trabalha:
|
|
48
60
|
|
|
49
61
|
```bash
|
|
@@ -255,7 +267,9 @@ Referencias oficiais:
|
|
|
255
267
|
|
|
256
268
|
Existem dois modos de execucao:
|
|
257
269
|
|
|
258
|
-
- `agent "<prompt>"`: entrada em linguagem natural;
|
|
270
|
+
- `agent "<prompt>"`: entrada em linguagem natural; monta um plano multiagente,
|
|
271
|
+
usa capabilities deterministicas quando possivel e exige backend LLM apenas
|
|
272
|
+
quando nenhuma rota local atende a tarefa.
|
|
259
273
|
- `agent run <agent> <capability>`: execucao deterministica; nao exige LLM.
|
|
260
274
|
|
|
261
275
|
Exemplo em linguagem natural:
|
|
@@ -264,6 +278,24 @@ Exemplo em linguagem natural:
|
|
|
264
278
|
agent "analise o problema relatado no card 9900"
|
|
265
279
|
```
|
|
266
280
|
|
|
281
|
+
Em `--json`, prompts roteados retornam `execution_plan` com o coordenador
|
|
282
|
+
`task-orchestrator`, tarefas especialistas, configuracoes pendentes,
|
|
283
|
+
`review_task` e `orchestration_trace`. Se uma fonte ou provider faltar, o plano
|
|
284
|
+
fica `needs-input` e inclui o `provider-configurator` com a proxima pergunta do
|
|
285
|
+
wizard. Quando a fonte esta configurada e a capability e read-only, o runtime
|
|
286
|
+
executa a task primaria pelo runner existente e revisa a conclusao pelo
|
|
287
|
+
`review_gate`.
|
|
288
|
+
|
|
289
|
+
Para tarefas operacionais como resumo, classificacao, extracao e normalizacao,
|
|
290
|
+
o runtime pode delegar uma subtarefa limitada ao `local-llm-operator` usando
|
|
291
|
+
Ollama. O resultado local aparece em `local_llm_execution` e e usado apenas como
|
|
292
|
+
contexto de apoio pelo coordenador principal.
|
|
293
|
+
|
|
294
|
+
Quando `review_gate.required = true`, o Agent DevKit exige uma segunda revisao
|
|
295
|
+
concreta pelo `execution-reviewer`, preferindo `claude-code` ou `codex-cli`.
|
|
296
|
+
Sem reviewer independente configurado, ou sem uma decisao explicita
|
|
297
|
+
`REVIEW OK`, a execucao retorna `needs-review` em vez de concluir como `ok`.
|
|
298
|
+
|
|
267
299
|
Exemplo deterministico:
|
|
268
300
|
|
|
269
301
|
```bash
|
|
@@ -329,8 +361,31 @@ agent --json "analise o card 7914 do projeto sustentacao no azure"
|
|
|
329
361
|
agent --json run topdesk-orchestrator read-incident --number "I 2606 001"
|
|
330
362
|
```
|
|
331
363
|
|
|
364
|
+
O retorno inclui `setup_wizard.wizard_id`. Continue o roteiro uma resposta por
|
|
365
|
+
vez; ao concluir, o runtime cria a source reutilizavel e retoma o prompt
|
|
366
|
+
original automaticamente:
|
|
367
|
+
|
|
368
|
+
```bash
|
|
369
|
+
agent wizard list
|
|
370
|
+
agent wizard show wiz-20260628120000-abc12345
|
|
371
|
+
agent wizard answer wiz-20260628120000-abc12345 sim
|
|
372
|
+
agent wizard answer wiz-20260628120000-abc12345 "minha-org"
|
|
373
|
+
agent wizard answer wiz-20260628120000-abc12345 AZURE_DEVOPS_PAT
|
|
374
|
+
agent wizard cancel wiz-20260628120000-abc12345
|
|
375
|
+
```
|
|
376
|
+
|
|
377
|
+
Em terminal interativo, sem `--json`, o proprio `agent` conduz o roteiro
|
|
378
|
+
pergunta por pergunta. Em automacoes, pipes e testes, use os subcomandos
|
|
379
|
+
`agent wizard ...` para evitar bloqueio de terminal.
|
|
380
|
+
|
|
381
|
+
Credenciais devem ser informadas por referencia, por exemplo o nome de uma
|
|
382
|
+
variavel de ambiente ou o caminho de um arquivo local. O Agent DevKit nao grava
|
|
383
|
+
o valor bruto do segredo no estado do wizard nem na configuracao da source.
|
|
384
|
+
|
|
332
385
|
O usuario tambem pode controlar ferramentas, integracoes, skills e LLMs sem
|
|
333
|
-
editar arquivos diretamente:
|
|
386
|
+
editar arquivos diretamente. Os alvos sao resolvidos pelos catalogos locais:
|
|
387
|
+
`tooling/toolchain.yaml`, `providers/*.yaml`, `vendor/skills/CATALOG.md` e
|
|
388
|
+
backends LLM registrados.
|
|
334
389
|
|
|
335
390
|
```bash
|
|
336
391
|
agent decisions list
|
|
@@ -347,13 +402,28 @@ As mesmas operacoes podem ser feitas por prompt:
|
|
|
347
402
|
```bash
|
|
348
403
|
agent "mostre minhas decisoes"
|
|
349
404
|
agent "desative o azure devops por enquanto"
|
|
405
|
+
agent "desative topdesk"
|
|
406
|
+
agent "habilite gh-cli"
|
|
407
|
+
agent "desative a skill security-review"
|
|
408
|
+
agent "desative openrouter"
|
|
350
409
|
agent "reative o ollama"
|
|
410
|
+
agent "liste llms"
|
|
411
|
+
agent "esqueca minha decisao sobre anthropic"
|
|
351
412
|
```
|
|
352
413
|
|
|
414
|
+
Se um nome existir em mais de uma categoria, o agente retorna `needs-input` com
|
|
415
|
+
as opcoes encontradas em vez de escolher silenciosamente. Use a categoria no
|
|
416
|
+
prompt para resolver, por exemplo `desative a integracao figma` ou `desative a
|
|
417
|
+
ferramenta figma-mcp`.
|
|
418
|
+
|
|
353
419
|
Se o usuario negar ou desativar uma ferramenta, a decisao fica persistida em
|
|
354
|
-
`~/.
|
|
420
|
+
`~/.agent-devkit/config/decisions.json` e o agente segue sem usar essa ferramenta
|
|
355
421
|
nas proximas sessoes ate reativacao explicita.
|
|
356
422
|
|
|
423
|
+
O home global canonico e `~/.agent-devkit`. Instancias antigas em `~/.ai-devkit`
|
|
424
|
+
continuam funcionando como legado; use `agent config migrate-home --dry-run` e
|
|
425
|
+
depois `agent config migrate-home` para migrar explicitamente.
|
|
426
|
+
|
|
357
427
|
Comandos uteis:
|
|
358
428
|
|
|
359
429
|
```bash
|
|
@@ -499,7 +569,9 @@ python3 scripts/mvp-readiness.py --json
|
|
|
499
569
|
dos agentes; apenas instalam skill/commands e delegam para o runtime `agent`.
|
|
500
570
|
|
|
501
571
|
- `plugins/codex-ai-devkit`: plugin local para Codex App.
|
|
502
|
-
- `plugins/claude-code-ai-devkit`: plugin local para Claude Code
|
|
572
|
+
- `plugins/claude-code-ai-devkit`: plugin local para Claude Code, incluindo
|
|
573
|
+
skill, comandos e subagentes opcionais para usar capabilities do Agent DevKit
|
|
574
|
+
em contextos isolados.
|
|
503
575
|
- `plugins/claude-skill-ai-devkit`: skill para Claude Desktop/Claude.ai.
|
|
504
576
|
|
|
505
577
|
Os nomes de pastas dos plugins ainda preservam `ai-devkit` por
|
|
@@ -522,7 +594,7 @@ solicita provider e nao persiste segredos. Use `--dry-run --json` para revisar
|
|
|
522
594
|
os caminhos antes de escrever. O host `all` inclui Codex App, Claude Code e
|
|
523
595
|
Claude Desktop/Claude.ai.
|
|
524
596
|
|
|
525
|
-
Instalacoes globais gravam `~/.
|
|
597
|
+
Instalacoes globais gravam `~/.agent-devkit/runtime.lock`; instalacoes por projeto
|
|
526
598
|
gravam `.ai-devkit/ai-devkit.lock`. Use `agent doctor --project .` para
|
|
527
599
|
verificar se o projeto esta fixado em runtime diferente do global.
|
|
528
600
|
|
|
@@ -542,7 +614,10 @@ Execucoes reais de capabilities com escrita exigem confirmacao dupla no runtime:
|
|
|
542
614
|
`blocked_by_default` tambem exigem `--allow-dangerous`, alem das validacoes
|
|
543
615
|
internas da capability.
|
|
544
616
|
|
|
545
|
-
Saidas JSON de `agent
|
|
617
|
+
Saidas JSON de `agent "<prompt>"` usam o contrato de orquestracao
|
|
618
|
+
`ai-devkit.agentic-plan/v1` dentro de `execution_plan`. Os estados principais
|
|
619
|
+
sao `planned`, `needs-input`, `ok`, `partial` e `blocked`. Saidas JSON de
|
|
620
|
+
`agent run` usam contrato `ai-devkit.run/v1`, com `status`
|
|
546
621
|
parseavel (`ok`, `partial`, `blocked`, `failed`), `agent_id`, `capability_id`,
|
|
547
622
|
`providers`, `fallback_applied`, `evidence`, `risks`, `next_steps` e
|
|
548
623
|
`artifacts` sempre presentes.
|
|
@@ -560,6 +635,30 @@ e ignorado pelo Git. Para Azure DevOps, `AZURE_DEVOPS_ORG` e
|
|
|
560
635
|
|
|
561
636
|
## Agentes disponiveis
|
|
562
637
|
|
|
638
|
+
- [`agent-devkit-agent-builder`](agents/agent-devkit-agent-builder/):
|
|
639
|
+
especialista interno para planejar, criar scaffold e validar novos agentes do
|
|
640
|
+
proprio Agent DevKit.
|
|
641
|
+
- [`automation-architect`](agents/automation-architect/): especialista em
|
|
642
|
+
classificar pedidos de automacao, escolher tecnologia adequada, planejar a
|
|
643
|
+
solucao e delegar por contrato para builders especificos.
|
|
644
|
+
- [`generic-agent-builder`](agents/generic-agent-builder/): especialista em
|
|
645
|
+
planejar, gerar e revisar agentes genericos portaveis para projetos e hosts
|
|
646
|
+
externos.
|
|
647
|
+
- [`python-automation-builder`](agents/python-automation-builder/):
|
|
648
|
+
especialista em planejar, gerar, revisar e empacotar automacoes Python
|
|
649
|
+
seguras para tarefas repetitivas.
|
|
650
|
+
- [`selenium-automation-builder`](agents/selenium-automation-builder/):
|
|
651
|
+
especialista em planejar, gerar e revisar automacoes Selenium/WebDriver quando
|
|
652
|
+
houver requisito tecnico para Selenium.
|
|
653
|
+
- [`pyautogui-automation-builder`](agents/pyautogui-automation-builder/):
|
|
654
|
+
especialista em planejar, gerar e revisar automacoes desktop visuais com
|
|
655
|
+
PyAutoGUI como ultimo recurso.
|
|
656
|
+
- [`playwright-automation-builder`](agents/playwright-automation-builder/):
|
|
657
|
+
especialista em planejar, gerar, revisar e executar checks controlados de
|
|
658
|
+
automacoes web modernas com Playwright.
|
|
659
|
+
- [`aws-lambda-builder`](agents/aws-lambda-builder/): especialista em
|
|
660
|
+
planejar, gerar, revisar e empacotar projetos AWS Lambda locais sem executar
|
|
661
|
+
deploy real.
|
|
563
662
|
- [`aws-architecture-analyst`](agents/aws-architecture-analyst/): especialista
|
|
564
663
|
em analise arquitetural AWS read-only, inventario, dependencias, resiliencia,
|
|
565
664
|
observabilidade, rede e blast radius.
|
|
@@ -584,6 +683,13 @@ e ignorado pelo Git. Para Azure DevOps, `AZURE_DEVOPS_ORG` e
|
|
|
584
683
|
- [`database-change-operator`](agents/database-change-operator/):
|
|
585
684
|
especialista em mudancas controladas em PostgreSQL, incluindo migrations,
|
|
586
685
|
rollback, scripts de escrita, upserts e updates com dry-run por padrao.
|
|
686
|
+
- [`docker-container-builder`](agents/docker-container-builder/): especialista
|
|
687
|
+
em planejar, gerar e revisar artefatos Docker locais, incluindo Dockerfile,
|
|
688
|
+
.dockerignore, docker-compose.yml, README.docker.md e planos de build sem
|
|
689
|
+
executar build, push ou deploy real.
|
|
690
|
+
- [`execution-loop-builder`](agents/execution-loop-builder/): especialista em
|
|
691
|
+
planejar, gerar, revisar e registrar loops de execucao controlados com
|
|
692
|
+
budgets, criterios de parada, estado minimo e auditoria por iteracao.
|
|
587
693
|
- [`drawio-diagram-builder`](agents/drawio-diagram-builder/): especialista em
|
|
588
694
|
criar, revisar e refinar diagramas Draw.io editaveis a partir de briefings,
|
|
589
695
|
documentos, pastas, cards Azure, especificacoes, inventarios tecnicos e
|
|
@@ -591,6 +697,8 @@ e ignorado pelo Git. Para Azure DevOps, `AZURE_DEVOPS_ORG` e
|
|
|
591
697
|
- [`elasticsearch-log-analyzer`](agents/elasticsearch-log-analyzer/):
|
|
592
698
|
especialista em Elasticsearch para descoberta de fontes, busca de eventos,
|
|
593
699
|
rastreio de requests, padroes de erro e relatorios de logs.
|
|
700
|
+
- [`execution-reviewer`](agents/execution-reviewer/): agente runtime de
|
|
701
|
+
revisao final, revisao de planos e revisao de resultados antes da conclusao.
|
|
594
702
|
- [`excel-workbook-builder`](agents/excel-workbook-builder/): especialista em
|
|
595
703
|
templates, preenchimento, conciliacao, revisao e exportacao de planilhas
|
|
596
704
|
Excel.
|
|
@@ -602,6 +710,11 @@ e ignorado pelo Git. Para Azure DevOps, `AZURE_DEVOPS_ORG` e
|
|
|
602
710
|
em modo report-only e criar automacoes locais conservadoras.
|
|
603
711
|
- [`knowledge-generator`](agents/knowledge-generator/): especialista em gerar
|
|
604
712
|
knowledge versionavel a partir de arquivos, pastas, projetos e documentacoes.
|
|
713
|
+
- [`local-llm-operator`](agents/local-llm-operator/): agente runtime para
|
|
714
|
+
diagnosticar, selecionar e delegar tarefas operacionais a LLMs locais.
|
|
715
|
+
- [`notification-operator`](agents/notification-operator/): agente runtime para
|
|
716
|
+
formatar, enviar e configurar notificacoes locais de tarefas com payload
|
|
717
|
+
canonico.
|
|
605
718
|
- [`n1-support-agent`](agents/n1-support-agent/): especialista N1 para executar
|
|
606
719
|
runbooks operacionais a partir de cards Azure DevOps, orquestrando Azure,
|
|
607
720
|
SQL Server, logs e TOPdesk.
|
|
@@ -611,6 +724,12 @@ e ignorado pelo Git. Para Azure DevOps, `AZURE_DEVOPS_ORG` e
|
|
|
611
724
|
especialista em PostgreSQL read-only para descoberta de databases, schemas,
|
|
612
725
|
tabelas, relacionamentos, joins, queries assistidas, perfilamento, qualidade
|
|
613
726
|
de dados e relatorios analiticos.
|
|
727
|
+
- [`supabase-project-analyst`](agents/supabase-project-analyst/):
|
|
728
|
+
especialista em inspecao local e auditoria report-only de projetos Supabase,
|
|
729
|
+
cobrindo RLS, Auth, Storage, migrations, Edge Functions e planos de correcao
|
|
730
|
+
sem aplicar mudancas reais.
|
|
731
|
+
- [`provider-configurator`](agents/provider-configurator/): agente runtime que
|
|
732
|
+
conduz wizard de providers, sources e referencias seguras de credenciais.
|
|
614
733
|
- [`presentation-deck-builder`](agents/presentation-deck-builder/):
|
|
615
734
|
especialista em templates versionados de PowerPoint, arquivos de entrada para
|
|
616
735
|
preenchimento e geracao de decks a partir de conteudo estruturado.
|
|
@@ -626,6 +745,8 @@ e ignorado pelo Git. Para Azure DevOps, `AZURE_DEVOPS_ORG` e
|
|
|
626
745
|
especialista em analise de requisitos, entrevistas, analise de projetos,
|
|
627
746
|
documentacao funcional/tecnica, user stories, fluxos de jornada e
|
|
628
747
|
rastreabilidade.
|
|
748
|
+
- [`task-orchestrator`](agents/task-orchestrator/): agente runtime que planeja
|
|
749
|
+
prompts livres, seleciona especialistas, coordena execucao e aciona revisao.
|
|
629
750
|
- [`technical-integration-analyst`](agents/technical-integration-analyst/):
|
|
630
751
|
especialista em analise de documentacoes tecnicas de integracoes, com suporte
|
|
631
752
|
a REST, SOAP, MCP, SFTP, SMTP e outros protocolos, gerando contratos, fluxos,
|
package/runtime/agent
CHANGED
|
@@ -12,6 +12,7 @@ from cli.aikit.main import DETERMINISTIC_COMMANDS, LLM_COMMANDS, main
|
|
|
12
12
|
|
|
13
13
|
SESSION_SHORTCUTS = {"-s", "--sessions"}
|
|
14
14
|
AGENT_PROMPT_FLAGS = {"--llm", "--no-llm-fallback", "--session", "--new-session"}
|
|
15
|
+
EXPLAIN_FLAGS = {"--explain"}
|
|
15
16
|
GLOBAL_PROMPT_FLAGS = {"--json", "--dry-run"}
|
|
16
17
|
|
|
17
18
|
|
|
@@ -28,6 +29,8 @@ def normalize_args(argv: list[str]) -> list[str]:
|
|
|
28
29
|
return [*leading, "agent"]
|
|
29
30
|
if remaining[0] in SESSION_SHORTCUTS:
|
|
30
31
|
return [*leading, *remaining]
|
|
32
|
+
if remaining[0] in EXPLAIN_FLAGS:
|
|
33
|
+
return [*leading, "route", "explain", *remaining[1:]]
|
|
31
34
|
if remaining[0] in commands:
|
|
32
35
|
return [*leading, *remaining]
|
|
33
36
|
return [*leading, "agent", *remaining]
|
|
@@ -36,6 +39,8 @@ def normalize_args(argv: list[str]) -> list[str]:
|
|
|
36
39
|
return remaining
|
|
37
40
|
if first in SESSION_SHORTCUTS:
|
|
38
41
|
return remaining
|
|
42
|
+
if first in EXPLAIN_FLAGS:
|
|
43
|
+
return ["route", "explain", *remaining[1:]]
|
|
39
44
|
if first in AGENT_PROMPT_FLAGS:
|
|
40
45
|
return ["agent", *remaining]
|
|
41
46
|
if first in commands:
|
package/runtime/agents/README.md
CHANGED
|
@@ -37,6 +37,23 @@ agents/<agent-id>/
|
|
|
37
37
|
|
|
38
38
|
## Agentes atuais
|
|
39
39
|
|
|
40
|
+
- `agent-devkit-agent-builder`: especialista interno para planejar, criar
|
|
41
|
+
scaffold e validar novos agentes do proprio Agent DevKit.
|
|
42
|
+
- `automation-architect`: especialista em classificar pedidos de automacao,
|
|
43
|
+
escolher tecnologia adequada e delegar por contrato para builders
|
|
44
|
+
especializados.
|
|
45
|
+
- `generic-agent-builder`: especialista em planejar, gerar e revisar agentes
|
|
46
|
+
genericos portaveis para projetos e hosts externos.
|
|
47
|
+
- `python-automation-builder`: especialista em planejar, gerar, revisar e
|
|
48
|
+
empacotar automacoes Python seguras para tarefas repetitivas.
|
|
49
|
+
- `selenium-automation-builder`: especialista em planejar, gerar e revisar
|
|
50
|
+
automacoes Selenium/WebDriver quando houver requisito tecnico para Selenium.
|
|
51
|
+
- `pyautogui-automation-builder`: especialista em planejar, gerar e revisar
|
|
52
|
+
automacoes desktop visuais com PyAutoGUI como ultimo recurso.
|
|
53
|
+
- `playwright-automation-builder`: especialista em planejar, gerar, revisar e
|
|
54
|
+
executar checks controlados de automacoes web modernas com Playwright.
|
|
55
|
+
- `aws-lambda-builder`: especialista em planejar, gerar, revisar e empacotar
|
|
56
|
+
projetos AWS Lambda locais sem executar deploy real.
|
|
40
57
|
- `aws-architecture-analyst`: especialista em analise arquitetural AWS
|
|
41
58
|
read-only.
|
|
42
59
|
- `aws-cloudwatch-log-analyzer`: especialista em AWS CloudWatch Logs.
|
|
@@ -50,9 +67,15 @@ agents/<agent-id>/
|
|
|
50
67
|
- `data-scientist-analyst`: especialista em analise de dados tabulares,
|
|
51
68
|
profiling, conciliacao e relatorios tecnicos.
|
|
52
69
|
- `database-change-operator`: especialista em mudancas controladas em Postgres.
|
|
70
|
+
- `docker-container-builder`: especialista em planejar, gerar e revisar
|
|
71
|
+
artefatos Docker locais sem executar build, push ou deploy real.
|
|
72
|
+
- `execution-loop-builder`: especialista em planejar, gerar, revisar e
|
|
73
|
+
registrar loops de execucao controlados com budgets e criterios de parada.
|
|
53
74
|
- `drawio-diagram-builder`: especialista em diagramas Draw.io editaveis a
|
|
54
75
|
partir de fontes reais, entrevista, geracao, revisao e refinamento.
|
|
55
76
|
- `elasticsearch-log-analyzer`: especialista em logs no Elasticsearch.
|
|
77
|
+
- `execution-reviewer`: agente runtime de revisao final, revisao de planos e
|
|
78
|
+
revisao de resultados de agentes especialistas.
|
|
56
79
|
- `excel-workbook-builder`: especialista em templates, preenchimento,
|
|
57
80
|
conciliacao, revisao e exportacao de planilhas Excel.
|
|
58
81
|
- `figma-ui-ux-product-designer`: especialista UI/UX para criar, recriar,
|
|
@@ -62,6 +85,8 @@ agents/<agent-id>/
|
|
|
62
85
|
locais conservadoras.
|
|
63
86
|
- `knowledge-generator`: especialista em gerar knowledge versionavel a partir de
|
|
64
87
|
fontes locais e documentacoes.
|
|
88
|
+
- `local-llm-operator`: agente runtime para diagnosticar, selecionar e delegar
|
|
89
|
+
tarefas operacionais a LLMs locais como Ollama.
|
|
65
90
|
- `n1-support-agent`: especialista N1 para runbooks operacionais a partir de
|
|
66
91
|
cards Azure DevOps.
|
|
67
92
|
- `n2-support-agent`: especialista N2 para investigacao de causa raiz e geracao
|
|
@@ -70,12 +95,21 @@ agents/<agent-id>/
|
|
|
70
95
|
de apresentacoes PowerPoint.
|
|
71
96
|
- `postgres-data-analyzer`: especialista em analise read-only forte de dados
|
|
72
97
|
Postgres.
|
|
98
|
+
- `supabase-project-analyst`: especialista em inspecao local e auditoria
|
|
99
|
+
report-only de projetos Supabase, RLS, Auth, Storage, migrations e planos de
|
|
100
|
+
correcao sem aplicar mudancas reais.
|
|
101
|
+
- `notification-operator`: agente runtime para formatar, enviar e configurar
|
|
102
|
+
notificacoes locais de tarefas com payload canonico.
|
|
103
|
+
- `provider-configurator`: agente runtime para conduzir wizard de configuracao
|
|
104
|
+
de providers, sources e referencias seguras de credenciais.
|
|
73
105
|
- `sqlserver-data-analyzer`: especialista em analise read-only de dados SQL
|
|
74
106
|
Server.
|
|
75
107
|
- `sqlserver-change-operator`: especialista em mudancas controladas em SQL
|
|
76
108
|
Server.
|
|
77
109
|
- `software-specification-analyst`: especialista em analise de requisitos,
|
|
78
110
|
entrevistas, analise de projetos e especificacoes completas de software.
|
|
111
|
+
- `task-orchestrator`: agente runtime que planeja prompts livres, seleciona
|
|
112
|
+
especialistas, coordena execucao e aciona revisao.
|
|
79
113
|
- `technical-integration-analyst`: especialista em documentacoes tecnicas de
|
|
80
114
|
integracoes e artefatos de teste.
|
|
81
115
|
- `topdesk-orchestrator`: especialista em TOPdesk para incidentes e triagem.
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Agent DevKit Agent Builder
|
|
2
|
+
|
|
3
|
+
Instrucoes locais para o agente `agent-devkit-agent-builder`.
|
|
4
|
+
|
|
5
|
+
## Responsabilidade
|
|
6
|
+
|
|
7
|
+
Este agente cria e valida novos agentes internos do proprio Agent DevKit em
|
|
8
|
+
`agents/<agent-id>/`.
|
|
9
|
+
|
|
10
|
+
## Guardrails
|
|
11
|
+
|
|
12
|
+
- Nao criar arquivos fora de `agents/<agent-id>/`.
|
|
13
|
+
- Nao sobrescrever agente existente sem permissao explicita.
|
|
14
|
+
- Nao persistir segredos, URLs privadas ou contexto de cliente.
|
|
15
|
+
- Nao criar provider ou dependencia externa nova.
|
|
16
|
+
- Gerar sempre `write_policy`, `workflow.md` e `decision-rules.md`.
|
|
17
|
+
- Usar dry-run como comportamento padrao para scaffold.
|
|
18
|
+
|
|
19
|
+
## Fora De Escopo
|
|
20
|
+
|
|
21
|
+
- Agentes genericos para outros projetos.
|
|
22
|
+
- Marketplace de agentes.
|
|
23
|
+
- Interface grafica.
|
|
24
|
+
- Geracao baseada em LLM nesta primeira versao.
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# Agent DevKit Agent Builder
|
|
2
|
+
|
|
3
|
+
Agente especialista interno para planejar, criar scaffold e validar novos
|
|
4
|
+
agentes do Agent DevKit.
|
|
5
|
+
|
|
6
|
+
## Capabilities
|
|
7
|
+
|
|
8
|
+
- `plan-agent`: analisa uma spec estruturada e retorna o plano de agente sem
|
|
9
|
+
escrever arquivos.
|
|
10
|
+
- `scaffold-agent`: gera o scaffold do agente em dry-run por padrao e escreve
|
|
11
|
+
arquivos somente com execucao confirmada.
|
|
12
|
+
- `validate-agent-contract`: valida a estrutura de um agente gerado.
|
|
13
|
+
|
|
14
|
+
## Exemplo
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
agent run agent-devkit-agent-builder plan-agent --spec docs/new-agent.yaml
|
|
18
|
+
agent run agent-devkit-agent-builder scaffold-agent --spec docs/new-agent.yaml
|
|
19
|
+
agent run agent-devkit-agent-builder scaffold-agent --spec docs/new-agent.yaml --execute --confirm-execute
|
|
20
|
+
agent run agent-devkit-agent-builder validate-agent-contract --agent-id sample-agent
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Spec Minima
|
|
24
|
+
|
|
25
|
+
```yaml
|
|
26
|
+
agent_id: sample-agent
|
|
27
|
+
name: Sample Agent
|
|
28
|
+
purpose: >
|
|
29
|
+
Descrever o objetivo do agente.
|
|
30
|
+
domain: dominio interno
|
|
31
|
+
capabilities:
|
|
32
|
+
- id: do-thing
|
|
33
|
+
purpose: Executar uma tarefa controlada.
|
|
34
|
+
write_policy: read_only
|
|
35
|
+
providers: []
|
|
36
|
+
risk_profile: low
|
|
37
|
+
```
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
id: agent-devkit-agent-builder
|
|
2
|
+
kind: specialist-agent
|
|
3
|
+
name: Agent DevKit Agent Builder
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
status: draft
|
|
6
|
+
owner: agent-devkit
|
|
7
|
+
|
|
8
|
+
purpose: >
|
|
9
|
+
Planejar, criar scaffold e validar novos agentes internos do Agent DevKit,
|
|
10
|
+
seguindo contratos, guardrails, estrutura de ownership e gates do projeto.
|
|
11
|
+
|
|
12
|
+
default_context:
|
|
13
|
+
- knowledge/system.md
|
|
14
|
+
- knowledge/context.md
|
|
15
|
+
- knowledge/policies.yaml
|
|
16
|
+
|
|
17
|
+
env:
|
|
18
|
+
required: []
|
|
19
|
+
optional: []
|
|
20
|
+
|
|
21
|
+
capabilities:
|
|
22
|
+
- plan-agent
|
|
23
|
+
- scaffold-agent
|
|
24
|
+
- validate-agent-contract
|
|
25
|
+
|
|
26
|
+
agent_surface:
|
|
27
|
+
repositories:
|
|
28
|
+
- infra/integrations/agent-devkit/agent_builder_repository.py
|
|
29
|
+
policies:
|
|
30
|
+
- knowledge/policies.yaml
|
|
31
|
+
|
|
32
|
+
write_policy:
|
|
33
|
+
planning: read_only
|
|
34
|
+
local_scaffold: confirm
|
|
35
|
+
validation: read_only
|
|
36
|
+
external_side_effects: blocked_by_default
|
|
37
|
+
|
|
38
|
+
routing:
|
|
39
|
+
anchors:
|
|
40
|
+
- agent-devkit
|
|
41
|
+
- agent-builder
|
|
42
|
+
- scaffold
|
|
43
|
+
- agente
|
|
44
|
+
intents:
|
|
45
|
+
- agent-devkit.agent-builder
|
|
46
|
+
priority: 55
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
id: agent-devkit-agent-builder.plan-agent
|
|
2
|
+
kind: capability
|
|
3
|
+
name: Plan Agent
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
status: draft
|
|
6
|
+
purpose: >
|
|
7
|
+
Ler uma spec estruturada de novo agente interno do Agent DevKit e retornar um
|
|
8
|
+
plano de arquivos, capabilities, policies e perguntas pendentes sem escrever
|
|
9
|
+
arquivos.
|
|
10
|
+
entrypoint:
|
|
11
|
+
runner: runner.py
|
|
12
|
+
workflow: workflow.md
|
|
13
|
+
prompt: ../../knowledge/system.md
|
|
14
|
+
output_template: ../../templates/agent-plan-output.md
|
|
15
|
+
inputs:
|
|
16
|
+
required:
|
|
17
|
+
- spec
|
|
18
|
+
optional: []
|
|
19
|
+
outputs:
|
|
20
|
+
artifacts:
|
|
21
|
+
- agent-plan.json
|
|
22
|
+
write_policy: read_only
|
|
23
|
+
routing:
|
|
24
|
+
anchors:
|
|
25
|
+
- plan-agent
|
|
26
|
+
- criar agente
|
|
27
|
+
intents:
|
|
28
|
+
- agent-devkit.agent-builder.plan
|
|
29
|
+
priority: 70
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""Runner for agent-devkit-agent-builder/plan-agent."""
|
|
3
|
+
|
|
4
|
+
from __future__ import annotations
|
|
5
|
+
|
|
6
|
+
import argparse
|
|
7
|
+
import json
|
|
8
|
+
from pathlib import Path
|
|
9
|
+
import sys
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
REPOSITORY_DIR = Path(__file__).resolve().parents[2] / "infra" / "integrations" / "agent-devkit"
|
|
13
|
+
sys.path.insert(0, str(REPOSITORY_DIR))
|
|
14
|
+
|
|
15
|
+
from agent_builder_repository import AgentBuilderRepository, AgentBuilderError # noqa: E402
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
def main() -> int:
|
|
19
|
+
parser = argparse.ArgumentParser(description="Plan a new internal Agent DevKit agent")
|
|
20
|
+
parser.add_argument("--spec", required=True)
|
|
21
|
+
args = parser.parse_args()
|
|
22
|
+
|
|
23
|
+
try:
|
|
24
|
+
result = AgentBuilderRepository().plan_agent(spec_path=Path(args.spec))
|
|
25
|
+
except AgentBuilderError as exc:
|
|
26
|
+
print(str(exc), file=sys.stderr)
|
|
27
|
+
return 1
|
|
28
|
+
print(json.dumps(result, ensure_ascii=False, indent=2))
|
|
29
|
+
return 0
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
if __name__ == "__main__":
|
|
33
|
+
raise SystemExit(main())
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
id: agent-devkit-agent-builder.scaffold-agent
|
|
2
|
+
kind: capability
|
|
3
|
+
name: Scaffold Agent
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
status: draft
|
|
6
|
+
purpose: >
|
|
7
|
+
Criar scaffold local de um novo agente interno do Agent DevKit em dry-run por
|
|
8
|
+
padrao, escrevendo arquivos apenas quando a execucao for explicitamente
|
|
9
|
+
confirmada.
|
|
10
|
+
entrypoint:
|
|
11
|
+
runner: runner.py
|
|
12
|
+
workflow: workflow.md
|
|
13
|
+
prompt: ../../knowledge/system.md
|
|
14
|
+
output_template: ../../templates/scaffold-plan-output.md
|
|
15
|
+
inputs:
|
|
16
|
+
required:
|
|
17
|
+
- spec
|
|
18
|
+
optional:
|
|
19
|
+
- execute
|
|
20
|
+
- allow_overwrite
|
|
21
|
+
outputs:
|
|
22
|
+
artifacts:
|
|
23
|
+
- scaffold-plan.json
|
|
24
|
+
write_policy: confirm
|
|
25
|
+
routing:
|
|
26
|
+
anchors:
|
|
27
|
+
- scaffold-agent
|
|
28
|
+
- gerar agente
|
|
29
|
+
intents:
|
|
30
|
+
- agent-devkit.agent-builder.scaffold
|
|
31
|
+
priority: 70
|
package/runtime/agents/agent-devkit-agent-builder/capabilities/scaffold-agent/decision-rules.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# Decision Rules
|
|
2
|
+
|
|
3
|
+
- Dry-run e o comportamento padrao.
|
|
4
|
+
- Escrita real exige `--execute` e confirmacao do runtime para `write_policy:
|
|
5
|
+
confirm`.
|
|
6
|
+
- Nao escrever fora de `agents/<agent-id>/`.
|
|
7
|
+
- Nao sobrescrever agente existente sem permissao explicita.
|
|
8
|
+
- Nao criar providers, dependencias externas ou arquivos fora do contrato do
|
|
9
|
+
agente.
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""Runner for agent-devkit-agent-builder/scaffold-agent."""
|
|
3
|
+
|
|
4
|
+
from __future__ import annotations
|
|
5
|
+
|
|
6
|
+
import argparse
|
|
7
|
+
import json
|
|
8
|
+
from pathlib import Path
|
|
9
|
+
import sys
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
REPOSITORY_DIR = Path(__file__).resolve().parents[2] / "infra" / "integrations" / "agent-devkit"
|
|
13
|
+
sys.path.insert(0, str(REPOSITORY_DIR))
|
|
14
|
+
|
|
15
|
+
from agent_builder_repository import AgentBuilderRepository, AgentBuilderError # noqa: E402
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
def main() -> int:
|
|
19
|
+
parser = argparse.ArgumentParser(description="Scaffold a new internal Agent DevKit agent")
|
|
20
|
+
parser.add_argument("--spec", required=True)
|
|
21
|
+
parser.add_argument("--execute", action="store_true")
|
|
22
|
+
parser.add_argument("--allow-overwrite", action="store_true")
|
|
23
|
+
args = parser.parse_args()
|
|
24
|
+
|
|
25
|
+
try:
|
|
26
|
+
result = AgentBuilderRepository().scaffold_agent(
|
|
27
|
+
spec_path=Path(args.spec),
|
|
28
|
+
execute=args.execute,
|
|
29
|
+
allow_overwrite=args.allow_overwrite,
|
|
30
|
+
)
|
|
31
|
+
except AgentBuilderError as exc:
|
|
32
|
+
print(str(exc), file=sys.stderr)
|
|
33
|
+
return 1
|
|
34
|
+
print(json.dumps(result, ensure_ascii=False, indent=2))
|
|
35
|
+
return 0
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
if __name__ == "__main__":
|
|
39
|
+
raise SystemExit(main())
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# Workflow
|
|
2
|
+
|
|
3
|
+
1. Ler a spec YAML ou JSON.
|
|
4
|
+
2. Gerar plano de arquivos.
|
|
5
|
+
3. Em dry-run, retornar os arquivos planejados sem escrever.
|
|
6
|
+
4. Com `--execute`, escrever apenas dentro de `agents/<agent-id>/`.
|
|
7
|
+
5. Bloquear overwrite sem `--allow-overwrite`.
|
|
8
|
+
6. Retornar arquivos escritos e proximos passos de validacao.
|