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
package/README.md
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
Agent DevKit is a CLI runtime for specialist AI agents, capabilities,
|
|
4
4
|
provider-aware automations and local host adapters for Codex and Claude.
|
|
5
|
+
On first run, the npm wrapper creates a local Python environment under
|
|
6
|
+
`~/.agent-devkit/python` (or `AGENT_DEVKIT_HOME`) and installs the bundled
|
|
7
|
+
`requirements.txt` dependencies.
|
|
5
8
|
|
|
6
9
|
The npm package installs the canonical command:
|
|
7
10
|
|
|
@@ -18,6 +21,7 @@ npm install -g agent-devkit
|
|
|
18
21
|
Validate the installation:
|
|
19
22
|
|
|
20
23
|
```bash
|
|
24
|
+
agent
|
|
21
25
|
agent --version
|
|
22
26
|
agent -v
|
|
23
27
|
agent doctor
|
|
@@ -26,7 +30,7 @@ agent doctor
|
|
|
26
30
|
Expected version for this release:
|
|
27
31
|
|
|
28
32
|
```text
|
|
29
|
-
agent 0.
|
|
33
|
+
agent 0.3.0
|
|
30
34
|
```
|
|
31
35
|
|
|
32
36
|
## Quick Start
|
|
@@ -41,6 +45,19 @@ agent llm list
|
|
|
41
45
|
agent commands list
|
|
42
46
|
```
|
|
43
47
|
|
|
48
|
+
Agent DevKit `v0.3.0` also includes deterministic runtime discovery and
|
|
49
|
+
integration commands:
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
agent roadmap
|
|
53
|
+
agent catalog search pr
|
|
54
|
+
agent plan "review this Azure card"
|
|
55
|
+
agent route explain "review the PRs waiting for me"
|
|
56
|
+
agent eval run routing
|
|
57
|
+
agent secrets doctor
|
|
58
|
+
agent mcp tools
|
|
59
|
+
```
|
|
60
|
+
|
|
44
61
|
Install project-local host artifacts for Codex, Claude Code and Claude
|
|
45
62
|
Desktop/Claude.ai:
|
|
46
63
|
|
|
@@ -60,6 +77,43 @@ Natural-language mode requires an LLM backend. Deterministic commands such as
|
|
|
60
77
|
`agent agents list`, `agent capabilities list`, `agent doctor`, `agent provider`
|
|
61
78
|
and `agent run` do not require an LLM.
|
|
62
79
|
|
|
80
|
+
Running `agent` without arguments starts the local onboarding status and wizard:
|
|
81
|
+
memory, personality, LLM backends, Ollama, toolchain, sources and next actions.
|
|
82
|
+
Use `agent onboard minimal` for identity, coordinator LLM, Qwen3-0.6B via
|
|
83
|
+
Ollama and local memory. Use `agent onboard complete` to include toolchain,
|
|
84
|
+
providers/sources, specialist catalog, local automations, tasks, notifications,
|
|
85
|
+
knowledge and shared memory. Both commands return plans; external installs
|
|
86
|
+
still require explicit opt-in.
|
|
87
|
+
|
|
88
|
+
The canonical executable remains `agent`, but the local public agent name can be
|
|
89
|
+
changed during onboarding, with `agent --rename <name>`, with
|
|
90
|
+
`agent personality edit --rename <name>`, or through a natural-language prompt
|
|
91
|
+
such as `agent "mude seu nome para ianota10"`. To expose an executable alias,
|
|
92
|
+
use `agent alias add <name>`.
|
|
93
|
+
|
|
94
|
+
Useful operational commands:
|
|
95
|
+
|
|
96
|
+
```bash
|
|
97
|
+
agent plan "analyze Azure card 7914"
|
|
98
|
+
agent execute --dry-run "summarize these logs"
|
|
99
|
+
agent workflow install daily-pr-review --dry-run
|
|
100
|
+
agent local-llm doctor
|
|
101
|
+
agent local-llm install qwen3:0.6b --dry-run
|
|
102
|
+
agent skill create my-skill --description "Local skill"
|
|
103
|
+
agent script create hello --command "echo hello"
|
|
104
|
+
agent team init
|
|
105
|
+
agent team doctor
|
|
106
|
+
agent knowledge init
|
|
107
|
+
agent knowledge search "runbook procedure"
|
|
108
|
+
agent shared-memory create --title "Support runbooks"
|
|
109
|
+
agent shared-memory submit <memory-id> --title "New runbook" --content "..." --key <contributor-key>
|
|
110
|
+
agent shared-memory review <memory-id> <submission-id>
|
|
111
|
+
agent shared-memory publish <memory-id> <submission-id> --yes --owner-key <owner-key>
|
|
112
|
+
agent contribute pr my-extension --dry-run
|
|
113
|
+
agent mcp manifest
|
|
114
|
+
agent mcp serve
|
|
115
|
+
```
|
|
116
|
+
|
|
63
117
|
## Complete Configuration Tutorial
|
|
64
118
|
|
|
65
119
|
There are three practical ways to use agents from the CLI:
|
|
@@ -175,10 +229,10 @@ agent llm doctor openrouter
|
|
|
175
229
|
```bash
|
|
176
230
|
agent ollama status
|
|
177
231
|
agent ollama models
|
|
178
|
-
agent ollama pull
|
|
179
|
-
agent ollama pull
|
|
232
|
+
agent ollama pull qwen3:0.6b --dry-run
|
|
233
|
+
agent ollama pull qwen3:0.6b --yes
|
|
180
234
|
ollama serve
|
|
181
|
-
agent llm configure ollama --base-url http://localhost:11434/v1 --model
|
|
235
|
+
agent llm configure ollama --base-url http://localhost:11434/v1 --model qwen3:0.6b --set-default
|
|
182
236
|
agent llm doctor ollama
|
|
183
237
|
```
|
|
184
238
|
|
|
@@ -292,7 +346,7 @@ agent llm configure openrouter --api-key-env OPENROUTER_API_KEY --model openai/g
|
|
|
292
346
|
Local or host-authenticated backends:
|
|
293
347
|
|
|
294
348
|
```bash
|
|
295
|
-
agent llm configure ollama --base-url http://localhost:11434/v1 --model
|
|
349
|
+
agent llm configure ollama --base-url http://localhost:11434/v1 --model qwen3:0.6b --set-default
|
|
296
350
|
agent llm configure codex-cli --set-default
|
|
297
351
|
agent llm configure claude-code --set-default
|
|
298
352
|
```
|
package/bin/agent.mjs
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
3
|
import { spawnSync } from "node:child_process";
|
|
4
|
-
import { accessSync, constants } from "node:fs";
|
|
4
|
+
import { accessSync, constants, existsSync, mkdirSync, readFileSync, writeFileSync } from "node:fs";
|
|
5
|
+
import os from "node:os";
|
|
5
6
|
import path from "node:path";
|
|
6
7
|
import { fileURLToPath } from "node:url";
|
|
7
8
|
|
|
@@ -9,6 +10,8 @@ const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
|
9
10
|
const packageRoot = path.resolve(__dirname, "..");
|
|
10
11
|
const runtimeRoot = path.join(packageRoot, "runtime");
|
|
11
12
|
const runtimeAgent = path.join(runtimeRoot, "agent");
|
|
13
|
+
const runtimeRequirements = path.join(runtimeRoot, "requirements.txt");
|
|
14
|
+
const packageJson = JSON.parse(readFileSync(path.join(packageRoot, "package.json"), "utf8"));
|
|
12
15
|
|
|
13
16
|
function canExecute(command) {
|
|
14
17
|
const result = spawnSync(command, ["--version"], {
|
|
@@ -22,13 +25,130 @@ function resolvePython() {
|
|
|
22
25
|
if (process.env.AGENT_DEVKIT_PYTHON) {
|
|
23
26
|
return process.env.AGENT_DEVKIT_PYTHON;
|
|
24
27
|
}
|
|
25
|
-
|
|
26
|
-
|
|
28
|
+
const basePython = canExecute("python3") ? "python3" : (canExecute("python") ? "python" : null);
|
|
29
|
+
if (!basePython) {
|
|
30
|
+
return null;
|
|
27
31
|
}
|
|
28
|
-
if (
|
|
29
|
-
return
|
|
32
|
+
if (!existsSync(runtimeRequirements)) {
|
|
33
|
+
return basePython;
|
|
34
|
+
}
|
|
35
|
+
return ensureBundledPython(basePython);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
function resolveAppHome() {
|
|
39
|
+
if (process.env.AGENT_DEVKIT_HOME) return process.env.AGENT_DEVKIT_HOME;
|
|
40
|
+
if (process.env.AI_DEVKIT_CONFIG_HOME) return process.env.AI_DEVKIT_CONFIG_HOME;
|
|
41
|
+
if (process.env.AIKIT_CONFIG_HOME) return process.env.AIKIT_CONFIG_HOME;
|
|
42
|
+
return path.join(os.homedir(), ".agent-devkit");
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
function venvPythonPath(venvRoot) {
|
|
46
|
+
if (process.platform === "win32") {
|
|
47
|
+
return path.join(venvRoot, "Scripts", "python.exe");
|
|
48
|
+
}
|
|
49
|
+
return path.join(venvRoot, "bin", "python");
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
function runOrFail(command, args, message, options = {}) {
|
|
53
|
+
const result = spawnSync(command, args, {
|
|
54
|
+
stdio: ["ignore", "pipe", "pipe"],
|
|
55
|
+
shell: false,
|
|
56
|
+
text: true,
|
|
57
|
+
...options,
|
|
58
|
+
});
|
|
59
|
+
if (result.status === 0) {
|
|
60
|
+
return result;
|
|
61
|
+
}
|
|
62
|
+
const details = [result.stdout, result.stderr].filter(Boolean).join("\n").trim();
|
|
63
|
+
throw new Error(`${message}${details ? `\n${details}` : ""}`);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
function commandOk(command, args) {
|
|
67
|
+
const result = spawnSync(command, args, {
|
|
68
|
+
stdio: "ignore",
|
|
69
|
+
shell: false,
|
|
70
|
+
});
|
|
71
|
+
return result.status === 0;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
function canAutoInstallPythonVenv() {
|
|
75
|
+
return (
|
|
76
|
+
process.platform === "linux"
|
|
77
|
+
&& typeof process.getuid === "function"
|
|
78
|
+
&& process.getuid() === 0
|
|
79
|
+
&& process.env.AGENT_DEVKIT_DISABLE_SYSTEM_BOOTSTRAP !== "1"
|
|
80
|
+
&& canExecute("apt-get")
|
|
81
|
+
);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
function tryInstallPythonVenvPackage() {
|
|
85
|
+
if (!canAutoInstallPythonVenv()) {
|
|
86
|
+
return false;
|
|
87
|
+
}
|
|
88
|
+
if (!commandOk("apt-get", ["update"])) {
|
|
89
|
+
return false;
|
|
90
|
+
}
|
|
91
|
+
return commandOk("apt-get", ["install", "-y", "python3-venv"]);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
function createVenv(basePython, venvRoot) {
|
|
95
|
+
const result = spawnSync(basePython, ["-m", "venv", venvRoot], {
|
|
96
|
+
stdio: ["ignore", "pipe", "pipe"],
|
|
97
|
+
shell: false,
|
|
98
|
+
text: true,
|
|
99
|
+
});
|
|
100
|
+
if (result.status === 0) {
|
|
101
|
+
return;
|
|
102
|
+
}
|
|
103
|
+
if (tryInstallPythonVenvPackage()) {
|
|
104
|
+
runOrFail(basePython, ["-m", "venv", venvRoot], "Failed to create Agent DevKit Python environment.");
|
|
105
|
+
return;
|
|
106
|
+
}
|
|
107
|
+
const details = [result.stdout, result.stderr].filter(Boolean).join("\n").trim();
|
|
108
|
+
throw new Error(`Failed to create Agent DevKit Python environment.${details ? `\n${details}` : ""}`);
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
function pythonImportsOk(python) {
|
|
112
|
+
const result = spawnSync(
|
|
113
|
+
python,
|
|
114
|
+
["-c", "import yaml, jsonschema, bs4, pypdf, reportlab"],
|
|
115
|
+
{ stdio: "ignore", shell: false },
|
|
116
|
+
);
|
|
117
|
+
return result.status === 0;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
function ensureBundledPython(basePython) {
|
|
121
|
+
const appHome = resolveAppHome();
|
|
122
|
+
const venvRoot = process.env.AGENT_DEVKIT_PYTHON_ENV || path.join(appHome, "python");
|
|
123
|
+
const python = venvPythonPath(venvRoot);
|
|
124
|
+
const marker = path.join(venvRoot, ".agent-devkit-deps.json");
|
|
125
|
+
mkdirSync(appHome, { recursive: true });
|
|
126
|
+
|
|
127
|
+
if (!existsSync(python)) {
|
|
128
|
+
createVenv(basePython, venvRoot);
|
|
129
|
+
}
|
|
130
|
+
if (pythonImportsOk(python) && markerMatches(marker)) {
|
|
131
|
+
return python;
|
|
132
|
+
}
|
|
133
|
+
runOrFail(
|
|
134
|
+
python,
|
|
135
|
+
["-m", "pip", "install", "--upgrade", "pip", "-r", runtimeRequirements],
|
|
136
|
+
"Failed to install Agent DevKit Python dependencies.",
|
|
137
|
+
);
|
|
138
|
+
writeFileSync(marker, JSON.stringify({ version: packageJson.version, requirements: "runtime/requirements.txt" }, null, 2));
|
|
139
|
+
return python;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
function markerMatches(marker) {
|
|
143
|
+
if (!existsSync(marker)) {
|
|
144
|
+
return false;
|
|
145
|
+
}
|
|
146
|
+
try {
|
|
147
|
+
const payload = JSON.parse(readFileSync(marker, "utf8"));
|
|
148
|
+
return payload.version === packageJson.version;
|
|
149
|
+
} catch {
|
|
150
|
+
return false;
|
|
30
151
|
}
|
|
31
|
-
return null;
|
|
32
152
|
}
|
|
33
153
|
|
|
34
154
|
try {
|
|
@@ -38,7 +158,13 @@ try {
|
|
|
38
158
|
process.exit(1);
|
|
39
159
|
}
|
|
40
160
|
|
|
41
|
-
|
|
161
|
+
let python = null;
|
|
162
|
+
try {
|
|
163
|
+
python = resolvePython();
|
|
164
|
+
} catch (error) {
|
|
165
|
+
console.error(error instanceof Error ? error.message : "Agent DevKit Python bootstrap failed.");
|
|
166
|
+
process.exit(1);
|
|
167
|
+
}
|
|
42
168
|
if (!python) {
|
|
43
169
|
console.error("Agent DevKit requires Python 3.11+ available as python3 or python.");
|
|
44
170
|
console.error("Set AGENT_DEVKIT_PYTHON to a Python executable if it is installed in a custom location.");
|
package/package.json
CHANGED
package/runtime/README.md
CHANGED
|
@@ -22,13 +22,19 @@ npm install -g agent-devkit
|
|
|
22
22
|
Valide a instalacao:
|
|
23
23
|
|
|
24
24
|
```bash
|
|
25
|
+
agent
|
|
25
26
|
agent --version
|
|
26
27
|
agent -v
|
|
27
28
|
agent doctor
|
|
28
29
|
```
|
|
29
30
|
|
|
30
31
|
O pacote instala o comando canonico `agent`. O nome do pacote npm e
|
|
31
|
-
`agent-devkit`.
|
|
32
|
+
`agent-devkit`. Na primeira execucao, o wrapper npm prepara um ambiente Python
|
|
33
|
+
local em `~/.agent-devkit/python` (ou no `AGENT_DEVKIT_HOME`) e instala as
|
|
34
|
+
dependencias de `requirements.txt`, para evitar setup manual de bibliotecas
|
|
35
|
+
Python. Ao executar apenas `agent`, o CLI entra no onboarding local: verifica
|
|
36
|
+
memoria, personalidade, backends LLM, Ollama, toolchain, sources, tasks e
|
|
37
|
+
proximas acoes sem exigir prompt manual.
|
|
32
38
|
|
|
33
39
|
## Primeiro uso
|
|
34
40
|
|
|
@@ -44,6 +50,27 @@ agent commands list
|
|
|
44
50
|
agent doctor
|
|
45
51
|
```
|
|
46
52
|
|
|
53
|
+
Na `v0.3.0`, o runtime tambem expoe superficies deterministicas para
|
|
54
|
+
descoberta, avaliacao e integracao por hosts:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
agent onboard minimal
|
|
58
|
+
agent onboard complete
|
|
59
|
+
agent roadmap
|
|
60
|
+
agent catalog search pr
|
|
61
|
+
agent plan "analise o card 7914 do azure"
|
|
62
|
+
agent route explain "revise as prs que recebi hoje"
|
|
63
|
+
agent eval run routing
|
|
64
|
+
agent secrets doctor
|
|
65
|
+
agent mcp tools
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
`agent onboard minimal` planeja o setup essencial: identidade, coordenador LLM,
|
|
69
|
+
mini-cerebro Qwen3-0.6B via Ollama e memoria local. `agent onboard complete`
|
|
70
|
+
inclui tambem toolchain, providers/sources, catalogo de agentes, automacoes
|
|
71
|
+
locais, tarefas, notificacoes, knowledge e memoria compartilhada. Ambos
|
|
72
|
+
retornam plano deterministico; instalacoes externas continuam exigindo opt-in.
|
|
73
|
+
|
|
47
74
|
Instale os artefatos locais do Agent DevKit no projeto em que voce trabalha:
|
|
48
75
|
|
|
49
76
|
```bash
|
|
@@ -66,6 +93,24 @@ Esse modo usa backend LLM. Se nenhum backend estiver configurado, a CLI informa
|
|
|
66
93
|
como configurar uma LLM ou como executar uma capability deterministica com
|
|
67
94
|
`agent run`.
|
|
68
95
|
|
|
96
|
+
O nome publico do agente e configuravel localmente sem mudar o comando
|
|
97
|
+
canonico. O comando continua sendo `agent`, mas a identidade pode ser alterada
|
|
98
|
+
no onboarding, por flag ou por linguagem natural:
|
|
99
|
+
|
|
100
|
+
```bash
|
|
101
|
+
agent --rename Ianota
|
|
102
|
+
agent personality edit --rename Ianota
|
|
103
|
+
agent "mude seu nome para ianota10"
|
|
104
|
+
agent "qual seu nome?"
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
Se voce quiser tambem chamar o executavel por outro nome, crie um alias local:
|
|
108
|
+
|
|
109
|
+
```bash
|
|
110
|
+
agent alias add jarvis
|
|
111
|
+
~/.agent-devkit/bin/jarvis "qual seu nome?"
|
|
112
|
+
```
|
|
113
|
+
|
|
69
114
|
## Tutorial completo de configuracao
|
|
70
115
|
|
|
71
116
|
Existem tres formas principais de usar agentes pelo CLI:
|
|
@@ -212,10 +257,10 @@ final.
|
|
|
212
257
|
```bash
|
|
213
258
|
agent ollama status
|
|
214
259
|
agent ollama models
|
|
215
|
-
agent ollama pull
|
|
216
|
-
agent ollama pull
|
|
260
|
+
agent ollama pull qwen3:0.6b --dry-run
|
|
261
|
+
agent ollama pull qwen3:0.6b --yes
|
|
217
262
|
ollama serve
|
|
218
|
-
agent llm configure ollama --base-url http://localhost:11434/v1 --model
|
|
263
|
+
agent llm configure ollama --base-url http://localhost:11434/v1 --model qwen3:0.6b --set-default
|
|
219
264
|
agent llm doctor ollama
|
|
220
265
|
```
|
|
221
266
|
|
|
@@ -258,6 +303,11 @@ Existem dois modos de execucao:
|
|
|
258
303
|
- `agent "<prompt>"`: entrada em linguagem natural; monta um plano multiagente,
|
|
259
304
|
usa capabilities deterministicas quando possivel e exige backend LLM apenas
|
|
260
305
|
quando nenhuma rota local atende a tarefa.
|
|
306
|
+
- `agent plan "<prompt>"`: gera o plano multiagente explicito sem executar LLM,
|
|
307
|
+
automacao ou escrita externa.
|
|
308
|
+
- `agent execute "<prompt>"` e `agent orchestrate "<prompt>"`: executam pelo
|
|
309
|
+
runtime agentico com roteamento, wizard de provider/source, modelo local
|
|
310
|
+
quando permitido e review gate.
|
|
261
311
|
- `agent run <agent> <capability>`: execucao deterministica; nao exige LLM.
|
|
262
312
|
|
|
263
313
|
Exemplo em linguagem natural:
|
|
@@ -297,6 +347,123 @@ saidas:
|
|
|
297
347
|
agent inspect azure-devops-orchestrator read-card
|
|
298
348
|
```
|
|
299
349
|
|
|
350
|
+
Comandos operacionais da `v0.2.1`:
|
|
351
|
+
|
|
352
|
+
```bash
|
|
353
|
+
agent catalog list --type workflow
|
|
354
|
+
agent catalog rebuild-index
|
|
355
|
+
agent workflow show daily-pr-review
|
|
356
|
+
agent workflow install daily-pr-review --dry-run
|
|
357
|
+
agent local-llm doctor
|
|
358
|
+
agent local-llm install qwen3:0.6b --dry-run
|
|
359
|
+
agent skill create minha-skill --description "Skill local"
|
|
360
|
+
agent script create hello --command "echo hello"
|
|
361
|
+
agent agents create meu-agente --description "Agente local"
|
|
362
|
+
agent team init
|
|
363
|
+
agent team doctor
|
|
364
|
+
agent contribute pr minha-extensao --dry-run
|
|
365
|
+
```
|
|
366
|
+
|
|
367
|
+
O MCP stdio embutido fica disponivel sempre que o CLI esta instalado:
|
|
368
|
+
|
|
369
|
+
```bash
|
|
370
|
+
agent mcp manifest
|
|
371
|
+
agent mcp tools
|
|
372
|
+
agent mcp serve
|
|
373
|
+
```
|
|
374
|
+
|
|
375
|
+
As ferramentas MCP expõem catalogo, onboarding, doctor, route explain, plano
|
|
376
|
+
agentico, evals, workflows, LLM local, artefatos locais, sources, wizards,
|
|
377
|
+
memoria local e memoria compartilhada. As operacoes com risco de escrita
|
|
378
|
+
externa continuam bloqueadas ou em dry-run por padrao.
|
|
379
|
+
|
|
380
|
+
## Memoria compartilhada
|
|
381
|
+
|
|
382
|
+
Memorias compartilhadas sao workspaces locais em `.agent-devkit/shared-memory`.
|
|
383
|
+
O criador e o dono da memoria; outros agentes recebem uma URL local e uma chave
|
|
384
|
+
de contribuidor, enviam novidades para `incoming`, e o dono revisa antes de
|
|
385
|
+
publicar em `accepted`.
|
|
386
|
+
|
|
387
|
+
```bash
|
|
388
|
+
agent shared-memory create --title "Runbooks de suporte"
|
|
389
|
+
agent shared-memory submit <memory-id> --title "Novo runbook" --content "..." --key <contributor-key>
|
|
390
|
+
agent shared-memory review <memory-id> <submission-id>
|
|
391
|
+
agent shared-memory publish <memory-id> <submission-id> --yes --owner-key <owner-key>
|
|
392
|
+
```
|
|
393
|
+
|
|
394
|
+
## Modo equipe
|
|
395
|
+
|
|
396
|
+
O modo equipe cria uma configuracao versionavel de projeto em
|
|
397
|
+
`.agent-devkit/team.yaml`. Esse arquivo pode guardar defaults de providers,
|
|
398
|
+
sources, workflows, permissoes, limites de LLM local e politica de prompt
|
|
399
|
+
injection, mas nunca valores de credenciais.
|
|
400
|
+
|
|
401
|
+
```bash
|
|
402
|
+
agent team init
|
|
403
|
+
agent team status
|
|
404
|
+
agent team doctor
|
|
405
|
+
agent team onboard
|
|
406
|
+
agent team profile list
|
|
407
|
+
agent team profile show default
|
|
408
|
+
agent team profile export default --path ./team-profile.yaml
|
|
409
|
+
agent team profile import ./team-profile.yaml
|
|
410
|
+
```
|
|
411
|
+
|
|
412
|
+
Segredos continuam pessoais, em `~/.agent-devkit`, por referencia segura:
|
|
413
|
+
|
|
414
|
+
```bash
|
|
415
|
+
agent secret set azure-devops pat --env AZURE_DEVOPS_PAT
|
|
416
|
+
```
|
|
417
|
+
|
|
418
|
+
## Knowledge fabric local
|
|
419
|
+
|
|
420
|
+
A `v0.3.0` introduz uma base de conhecimento compartilhada file-first. A fonte
|
|
421
|
+
canonica e um diretorio `knowledge-base/` com Markdown, JSON e YAML; indices
|
|
422
|
+
lexicais ou semanticos sao derivados e podem ser recriados.
|
|
423
|
+
|
|
424
|
+
```bash
|
|
425
|
+
agent knowledge init
|
|
426
|
+
agent knowledge doctor
|
|
427
|
+
agent knowledge snapshot create --title "Runbook" --content "# Runbook..."
|
|
428
|
+
agent knowledge review runbook
|
|
429
|
+
agent knowledge publish runbook --yes --owner-agent knowledge-owner
|
|
430
|
+
agent knowledge snapshot list
|
|
431
|
+
agent knowledge snapshot show runbook
|
|
432
|
+
agent knowledge snapshot score runbook
|
|
433
|
+
agent knowledge snapshot submit runbook
|
|
434
|
+
agent knowledge review list
|
|
435
|
+
agent knowledge curate
|
|
436
|
+
agent knowledge sync
|
|
437
|
+
agent knowledge reindex
|
|
438
|
+
agent knowledge search "runbook procedimento"
|
|
439
|
+
agent knowledge index
|
|
440
|
+
agent knowledge-base create --provider github
|
|
441
|
+
agent knowledge-base join kb_01JZ... --provider s3
|
|
442
|
+
```
|
|
443
|
+
|
|
444
|
+
Snapshots sao tratados como conteudo externo nao confiavel. A revisao bloqueia
|
|
445
|
+
segredos, PII obvia e sinais de prompt injection antes de publicar localmente.
|
|
446
|
+
|
|
447
|
+
Os providers `knowledge-*` documentam o storage previsto para GitHub, S3,
|
|
448
|
+
Supabase Storage, Google Drive, SharePoint, OneDrive, Notion, Obsidian,
|
|
449
|
+
filesystem local e indice vetorial derivado. Providers remotos ficam em
|
|
450
|
+
`draft`, exigem opt-in e fallback para plano/manual enquanto nao houver
|
|
451
|
+
credencial e implementacao ativa.
|
|
452
|
+
|
|
453
|
+
## QA destrutivo em Docker
|
|
454
|
+
|
|
455
|
+
Para validar instalacao limpa, bootstrap de dependencias, onboarding, memoria,
|
|
456
|
+
knowledge-base, MCP, desinstalacao e remocao da `.agent-devkit` sem tocar no
|
|
457
|
+
host:
|
|
458
|
+
|
|
459
|
+
```bash
|
|
460
|
+
npm run docker:qa
|
|
461
|
+
```
|
|
462
|
+
|
|
463
|
+
O script empacota o runtime local, instala o tarball em um container
|
|
464
|
+
`node:20-bookworm`, executa os fluxos criticos e remove o home local criado no
|
|
465
|
+
container.
|
|
466
|
+
|
|
300
467
|
## Configurar providers
|
|
301
468
|
|
|
302
469
|
Providers tambem sao configurados por referencia. Configure apenas o que for
|
|
@@ -418,6 +585,10 @@ Comandos uteis:
|
|
|
418
585
|
agent commands list
|
|
419
586
|
agent inspect azure-devops-orchestrator read-card
|
|
420
587
|
agent memory show
|
|
588
|
+
agent memory backup create --title "Antes da migracao"
|
|
589
|
+
export AGENT_DEVKIT_BACKUP_PASSPHRASE="frase longa"
|
|
590
|
+
agent memory backup create --title "Antes da migracao" --encrypted --passphrase-env AGENT_DEVKIT_BACKUP_PASSPHRASE
|
|
591
|
+
agent memory backup restore <backup-id> --yes
|
|
421
592
|
agent memory reset --all
|
|
422
593
|
```
|
|
423
594
|
|
|
@@ -557,7 +728,9 @@ python3 scripts/mvp-readiness.py --json
|
|
|
557
728
|
dos agentes; apenas instalam skill/commands e delegam para o runtime `agent`.
|
|
558
729
|
|
|
559
730
|
- `plugins/codex-ai-devkit`: plugin local para Codex App.
|
|
560
|
-
- `plugins/claude-code-ai-devkit`: plugin local para Claude Code
|
|
731
|
+
- `plugins/claude-code-ai-devkit`: plugin local para Claude Code, incluindo
|
|
732
|
+
skill, comandos e subagentes opcionais para usar capabilities do Agent DevKit
|
|
733
|
+
em contextos isolados.
|
|
561
734
|
- `plugins/claude-skill-ai-devkit`: skill para Claude Desktop/Claude.ai.
|
|
562
735
|
|
|
563
736
|
Os nomes de pastas dos plugins ainda preservam `ai-devkit` por
|
|
@@ -621,6 +794,30 @@ e ignorado pelo Git. Para Azure DevOps, `AZURE_DEVOPS_ORG` e
|
|
|
621
794
|
|
|
622
795
|
## Agentes disponiveis
|
|
623
796
|
|
|
797
|
+
- [`agent-devkit-agent-builder`](agents/agent-devkit-agent-builder/):
|
|
798
|
+
especialista interno para planejar, criar scaffold e validar novos agentes do
|
|
799
|
+
proprio Agent DevKit.
|
|
800
|
+
- [`automation-architect`](agents/automation-architect/): especialista em
|
|
801
|
+
classificar pedidos de automacao, escolher tecnologia adequada, planejar a
|
|
802
|
+
solucao e delegar por contrato para builders especificos.
|
|
803
|
+
- [`generic-agent-builder`](agents/generic-agent-builder/): especialista em
|
|
804
|
+
planejar, gerar e revisar agentes genericos portaveis para projetos e hosts
|
|
805
|
+
externos.
|
|
806
|
+
- [`python-automation-builder`](agents/python-automation-builder/):
|
|
807
|
+
especialista em planejar, gerar, revisar e empacotar automacoes Python
|
|
808
|
+
seguras para tarefas repetitivas.
|
|
809
|
+
- [`selenium-automation-builder`](agents/selenium-automation-builder/):
|
|
810
|
+
especialista em planejar, gerar e revisar automacoes Selenium/WebDriver quando
|
|
811
|
+
houver requisito tecnico para Selenium.
|
|
812
|
+
- [`pyautogui-automation-builder`](agents/pyautogui-automation-builder/):
|
|
813
|
+
especialista em planejar, gerar e revisar automacoes desktop visuais com
|
|
814
|
+
PyAutoGUI como ultimo recurso.
|
|
815
|
+
- [`playwright-automation-builder`](agents/playwright-automation-builder/):
|
|
816
|
+
especialista em planejar, gerar, revisar e executar checks controlados de
|
|
817
|
+
automacoes web modernas com Playwright.
|
|
818
|
+
- [`aws-lambda-builder`](agents/aws-lambda-builder/): especialista em
|
|
819
|
+
planejar, gerar, revisar e empacotar projetos AWS Lambda locais sem executar
|
|
820
|
+
deploy real.
|
|
624
821
|
- [`aws-architecture-analyst`](agents/aws-architecture-analyst/): especialista
|
|
625
822
|
em analise arquitetural AWS read-only, inventario, dependencias, resiliencia,
|
|
626
823
|
observabilidade, rede e blast radius.
|
|
@@ -645,6 +842,13 @@ e ignorado pelo Git. Para Azure DevOps, `AZURE_DEVOPS_ORG` e
|
|
|
645
842
|
- [`database-change-operator`](agents/database-change-operator/):
|
|
646
843
|
especialista em mudancas controladas em PostgreSQL, incluindo migrations,
|
|
647
844
|
rollback, scripts de escrita, upserts e updates com dry-run por padrao.
|
|
845
|
+
- [`docker-container-builder`](agents/docker-container-builder/): especialista
|
|
846
|
+
em planejar, gerar e revisar artefatos Docker locais, incluindo Dockerfile,
|
|
847
|
+
.dockerignore, docker-compose.yml, README.docker.md e planos de build sem
|
|
848
|
+
executar build, push ou deploy real.
|
|
849
|
+
- [`execution-loop-builder`](agents/execution-loop-builder/): especialista em
|
|
850
|
+
planejar, gerar, revisar e registrar loops de execucao controlados com
|
|
851
|
+
budgets, criterios de parada, estado minimo e auditoria por iteracao.
|
|
648
852
|
- [`drawio-diagram-builder`](agents/drawio-diagram-builder/): especialista em
|
|
649
853
|
criar, revisar e refinar diagramas Draw.io editaveis a partir de briefings,
|
|
650
854
|
documentos, pastas, cards Azure, especificacoes, inventarios tecnicos e
|
|
@@ -654,6 +858,9 @@ e ignorado pelo Git. Para Azure DevOps, `AZURE_DEVOPS_ORG` e
|
|
|
654
858
|
rastreio de requests, padroes de erro e relatorios de logs.
|
|
655
859
|
- [`execution-reviewer`](agents/execution-reviewer/): agente runtime de
|
|
656
860
|
revisao final, revisao de planos e revisao de resultados antes da conclusao.
|
|
861
|
+
- [`contribution-reviewer`](agents/contribution-reviewer/): agente runtime para
|
|
862
|
+
validar extensoes locais, revisar riscos de contribuicao upstream e planejar
|
|
863
|
+
PRs em modo report-only.
|
|
657
864
|
- [`excel-workbook-builder`](agents/excel-workbook-builder/): especialista em
|
|
658
865
|
templates, preenchimento, conciliacao, revisao e exportacao de planilhas
|
|
659
866
|
Excel.
|
|
@@ -663,10 +870,30 @@ e ignorado pelo Git. Para Azure DevOps, `AZURE_DEVOPS_ORG` e
|
|
|
663
870
|
- [`github-pr-reviewer`](agents/github-pr-reviewer/): especialista em Pull
|
|
664
871
|
Requests GitHub para listar revisoes pendentes, inspecionar PRs, revisar diffs
|
|
665
872
|
em modo report-only e criar automacoes locais conservadoras.
|
|
873
|
+
- [`knowledge-infra-builder`](agents/knowledge-infra-builder/): especialista em
|
|
874
|
+
criar e diagnosticar a infraestrutura file-first da knowledge base
|
|
875
|
+
compartilhada.
|
|
876
|
+
- [`knowledge-author`](agents/knowledge-author/): especialista em criar
|
|
877
|
+
snapshots de conhecimento reutilizavel, sanitizado e revisavel.
|
|
666
878
|
- [`knowledge-generator`](agents/knowledge-generator/): especialista em gerar
|
|
667
879
|
knowledge versionavel a partir de arquivos, pastas, projetos e documentacoes.
|
|
880
|
+
- [`knowledge-reviewer`](agents/knowledge-reviewer/): especialista em revisar
|
|
881
|
+
snapshots, bloqueando segredo, PII indevida, duplicidade e prompt injection.
|
|
882
|
+
- [`knowledge-curator`](agents/knowledge-curator/): especialista em curadoria
|
|
883
|
+
continua, deduplicacao, arquivamento e reindexacao derivada da knowledge base.
|
|
884
|
+
- [`knowledge-owner`](agents/knowledge-owner/): autoridade de publicacao
|
|
885
|
+
controlada da knowledge base principal apos revisao.
|
|
668
886
|
- [`local-llm-operator`](agents/local-llm-operator/): agente runtime para
|
|
669
887
|
diagnosticar, selecionar e delegar tarefas operacionais a LLMs locais.
|
|
888
|
+
- [`local-memory-manager`](agents/local-memory-manager/): agente runtime para
|
|
889
|
+
inspecionar e curar memoria local, preferencias, sessoes e identidade sem
|
|
890
|
+
expor segredos.
|
|
891
|
+
- [`memory-sync-manager`](agents/memory-sync-manager/): especialista em
|
|
892
|
+
planejar backup, restore e sincronizacao seletiva da memoria local e
|
|
893
|
+
personalidade.
|
|
894
|
+
- [`notification-operator`](agents/notification-operator/): agente runtime para
|
|
895
|
+
formatar, enviar e configurar notificacoes locais de tarefas com payload
|
|
896
|
+
canonico.
|
|
670
897
|
- [`n1-support-agent`](agents/n1-support-agent/): especialista N1 para executar
|
|
671
898
|
runbooks operacionais a partir de cards Azure DevOps, orquestrando Azure,
|
|
672
899
|
SQL Server, logs e TOPdesk.
|
|
@@ -676,6 +903,13 @@ e ignorado pelo Git. Para Azure DevOps, `AZURE_DEVOPS_ORG` e
|
|
|
676
903
|
especialista em PostgreSQL read-only para descoberta de databases, schemas,
|
|
677
904
|
tabelas, relacionamentos, joins, queries assistidas, perfilamento, qualidade
|
|
678
905
|
de dados e relatorios analiticos.
|
|
906
|
+
- [`supabase-project-analyst`](agents/supabase-project-analyst/):
|
|
907
|
+
especialista em inspecao local e auditoria report-only de projetos Supabase,
|
|
908
|
+
cobrindo RLS, Auth, Storage, migrations, Edge Functions e planos de correcao
|
|
909
|
+
sem aplicar mudancas reais.
|
|
910
|
+
- [`shared-memory-curator`](agents/shared-memory-curator/): agente runtime para
|
|
911
|
+
criar memorias compartilhadas, revisar contribuicoes externas e publicar
|
|
912
|
+
apenas conteudo aprovado pelo dono.
|
|
679
913
|
- [`provider-configurator`](agents/provider-configurator/): agente runtime que
|
|
680
914
|
conduz wizard de providers, sources e referencias seguras de credenciais.
|
|
681
915
|
- [`presentation-deck-builder`](agents/presentation-deck-builder/):
|