proagents 1.0.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/LICENSE +21 -0
- package/README.md +170 -0
- package/bin/proagents.js +90 -0
- package/lib/commands/feature.js +125 -0
- package/lib/commands/fix.js +60 -0
- package/lib/commands/help.js +76 -0
- package/lib/commands/init.js +64 -0
- package/lib/commands/status.js +91 -0
- package/lib/index.js +28 -0
- package/package.json +52 -0
- package/proagents/.learning/global/common-patterns.json +77 -0
- package/proagents/.learning/global/user-preferences.json +76 -0
- package/proagents/.learning/projects/example-project/corrections.json +99 -0
- package/proagents/.learning/projects/example-project/feedback.json +109 -0
- package/proagents/.learning/projects/example-project/metrics.json +101 -0
- package/proagents/.learning/projects/example-project/patterns.json +102 -0
- package/proagents/.learning/schemas/README.md +48 -0
- package/proagents/.learning/schemas/corrections-schema.json +100 -0
- package/proagents/.learning/schemas/feedback-schema.json +144 -0
- package/proagents/.learning/schemas/metrics-schema.json +96 -0
- package/proagents/.learning/schemas/patterns-schema.json +82 -0
- package/proagents/.learning/schemas/project-patterns-schema.json +125 -0
- package/proagents/.learning/schemas/user-preferences-schema.json +136 -0
- package/proagents/GETTING-STARTED-STORY.md +708 -0
- package/proagents/README.md +99 -0
- package/proagents/WORKFLOW.md +1234 -0
- package/proagents/active-features/.gitkeep +0 -0
- package/proagents/active-features/README.md +176 -0
- package/proagents/active-features/_index.json +74 -0
- package/proagents/active-features/feature-user-auth/dependencies.json +81 -0
- package/proagents/active-features/feature-user-auth/files-modified.json +126 -0
- package/proagents/active-features/feature-user-auth/status.json +122 -0
- package/proagents/active-features/schemas/dependencies-schema.json +119 -0
- package/proagents/active-features/schemas/feature-schema.json +132 -0
- package/proagents/active-features/schemas/files-schema.json +100 -0
- package/proagents/active-features/schemas/index-schema.json +95 -0
- package/proagents/adr/README.md +302 -0
- package/proagents/adr/examples/api-versioning.md +297 -0
- package/proagents/adr/examples/database-choice.md +264 -0
- package/proagents/adr/template.md +273 -0
- package/proagents/ai-models/README.md +141 -0
- package/proagents/ai-models/cost-management.md +362 -0
- package/proagents/ai-models/fallbacks.md +342 -0
- package/proagents/ai-models/model-config.md +318 -0
- package/proagents/ai-models/task-routing.md +503 -0
- package/proagents/ai-training/README.md +155 -0
- package/proagents/ai-training/continuous-learning.md +413 -0
- package/proagents/ai-training/domain-knowledge.md +378 -0
- package/proagents/ai-training/pattern-learning.md +455 -0
- package/proagents/ai-training/training-data.md +337 -0
- package/proagents/ai-training/user-preferences.md +346 -0
- package/proagents/api-versioning/README.md +257 -0
- package/proagents/api-versioning/changelog-template.md +225 -0
- package/proagents/api-versioning/deprecation-workflow.md +470 -0
- package/proagents/api-versioning/versioning-strategy.md +291 -0
- package/proagents/approval-workflows/README.md +146 -0
- package/proagents/approval-workflows/approval-config.md +332 -0
- package/proagents/approval-workflows/approval-stages.md +503 -0
- package/proagents/approval-workflows/emergency-bypass.md +351 -0
- package/proagents/approval-workflows/examples.md +859 -0
- package/proagents/approval-workflows/notifications.md +320 -0
- package/proagents/automation/README.md +38 -0
- package/proagents/automation/ai-behavior-rules.md +339 -0
- package/proagents/automation/ai-prompt-injection.md +331 -0
- package/proagents/automation/auto-decisions.md +535 -0
- package/proagents/automation/decision-defaults.yaml +317 -0
- package/proagents/cache/README.md +110 -0
- package/proagents/cache/analysis-metadata.json +76 -0
- package/proagents/cache/conventions.json +125 -0
- package/proagents/cache/dependencies.json +85 -0
- package/proagents/cache/features.json +115 -0
- package/proagents/cache/patterns.json +105 -0
- package/proagents/cache/schemas/conventions-schema.json +138 -0
- package/proagents/cache/schemas/dependencies-schema.json +95 -0
- package/proagents/cache/schemas/features-schema.json +104 -0
- package/proagents/cache/schemas/metadata-schema.json +83 -0
- package/proagents/cache/schemas/patterns-schema.json +136 -0
- package/proagents/cache/schemas/structure-schema.json +72 -0
- package/proagents/cache/structure.json +109 -0
- package/proagents/changelog/2024/01/2024-01-10-api-url-config.md +41 -0
- package/proagents/changelog/2024/01/2024-01-12-login-bug-fix.md +69 -0
- package/proagents/changelog/2024/01/2024-01-15-user-auth-feature.md +99 -0
- package/proagents/changelog/CHANGELOG.md +82 -0
- package/proagents/changelog/README.md +327 -0
- package/proagents/changelog/entry-template.md +283 -0
- package/proagents/checklists/README.md +261 -0
- package/proagents/checklists/code-quality.md +137 -0
- package/proagents/checklists/code-review.md +148 -0
- package/proagents/checklists/pr-checklist.md +78 -0
- package/proagents/checklists/pre-deployment.md +132 -0
- package/proagents/checklists/pre-implementation.md +80 -0
- package/proagents/checklists/testing.md +120 -0
- package/proagents/cicd/README.md +338 -0
- package/proagents/cicd/azure-devops.md +267 -0
- package/proagents/cicd/github-actions.md +375 -0
- package/proagents/cicd/gitlab-ci.md +278 -0
- package/proagents/cicd/jenkins.md +317 -0
- package/proagents/cli/README.md +392 -0
- package/proagents/cli/commands-reference.md +893 -0
- package/proagents/cli/ide-integration.md +584 -0
- package/proagents/cli/shortcuts.md +394 -0
- package/proagents/cli/slash-commands.md +507 -0
- package/proagents/collaboration/README.md +143 -0
- package/proagents/collaboration/roles.md +248 -0
- package/proagents/collaboration/sessions.md +390 -0
- package/proagents/collaboration/sync.md +358 -0
- package/proagents/compliance/README.md +206 -0
- package/proagents/compliance/access-control.md +310 -0
- package/proagents/compliance/audit-logging.md +444 -0
- package/proagents/compliance/compliance-frameworks.md +429 -0
- package/proagents/compliance/reports.md +491 -0
- package/proagents/compliance/retention-policies.md +454 -0
- package/proagents/config/README.md +181 -0
- package/proagents/config/integrations/README.md +68 -0
- package/proagents/config/integrations/github.yaml +211 -0
- package/proagents/config/integrations/jira.yaml +144 -0
- package/proagents/config/integrations/linear.yaml +157 -0
- package/proagents/config/integrations/notion.yaml +203 -0
- package/proagents/config/integrations/slack.yaml +230 -0
- package/proagents/config/rules/README.md +73 -0
- package/proagents/config/rules/custom-rules.template.yaml +188 -0
- package/proagents/config/rules/validation-rules.template.yaml +177 -0
- package/proagents/config/standards/README.md +58 -0
- package/proagents/config/standards/architecture-rules.template.md +124 -0
- package/proagents/config/standards/coding-standards.template.md +107 -0
- package/proagents/config/standards/naming-conventions.template.md +114 -0
- package/proagents/config/standards/testing-standards.template.md +213 -0
- package/proagents/config/templates/README.md +74 -0
- package/proagents/config/templates/api-route.template.ts +142 -0
- package/proagents/config/templates/component.template.tsx +55 -0
- package/proagents/config/templates/hook.template.ts +93 -0
- package/proagents/config/templates/test.template.ts +171 -0
- package/proagents/config-versioning/README.md +120 -0
- package/proagents/config-versioning/changelog.md +300 -0
- package/proagents/config-versioning/rollback.md +283 -0
- package/proagents/config-versioning/versioning.md +330 -0
- package/proagents/contract-testing/README.md +223 -0
- package/proagents/contract-testing/contract-testing.md +614 -0
- package/proagents/contract-testing/pact-integration.md +507 -0
- package/proagents/contract-testing/schema-validation.md +565 -0
- package/proagents/cost/README.md +48 -0
- package/proagents/cost/cost-template.md +283 -0
- package/proagents/cost/estimation-framework.md +287 -0
- package/proagents/database/README.md +72 -0
- package/proagents/database/examples/001-create-users.sql +129 -0
- package/proagents/database/examples/002-add-preferences.sql +94 -0
- package/proagents/database/examples/003-add-index.sql +105 -0
- package/proagents/database/examples/004-rename-column.sql +122 -0
- package/proagents/database/examples/005-add-foreign-key.sql +142 -0
- package/proagents/database/examples/006-data-migration.sql +196 -0
- package/proagents/database/examples/007-drop-column.sql +163 -0
- package/proagents/database/examples/README.md +89 -0
- package/proagents/database/migration-workflow.md +478 -0
- package/proagents/database/rollback-scripts.md +487 -0
- package/proagents/database/safety-checks.md +447 -0
- package/proagents/dependency-management/README.md +140 -0
- package/proagents/dependency-management/automation.md +363 -0
- package/proagents/dependency-management/compatibility.md +319 -0
- package/proagents/dependency-management/security-scanning.md +413 -0
- package/proagents/dependency-management/update-policies.md +374 -0
- package/proagents/disaster-recovery/README.md +247 -0
- package/proagents/disaster-recovery/automation.md +366 -0
- package/proagents/disaster-recovery/backup-recovery.md +571 -0
- package/proagents/disaster-recovery/incident-response.md +565 -0
- package/proagents/disaster-recovery/rollback-procedures.md +499 -0
- package/proagents/disaster-recovery/runbooks.md +603 -0
- package/proagents/disaster-recovery/scenarios.md +892 -0
- package/proagents/disaster-recovery/testing.md +438 -0
- package/proagents/environments/README.md +244 -0
- package/proagents/environments/configuration.md +437 -0
- package/proagents/environments/promotion.md +434 -0
- package/proagents/environments/setup.md +420 -0
- package/proagents/examples/README.md +55 -0
- package/proagents/examples/backend-nodejs/README.md +188 -0
- package/proagents/examples/backend-nodejs/complete-conversation.md +601 -0
- package/proagents/examples/backend-nodejs/proagents.config.yaml +415 -0
- package/proagents/examples/backend-nodejs/workflow-example.md +909 -0
- package/proagents/examples/fullstack-nextjs/README.md +155 -0
- package/proagents/examples/fullstack-nextjs/complete-conversation.md +604 -0
- package/proagents/examples/fullstack-nextjs/proagents.config.yaml +287 -0
- package/proagents/examples/fullstack-nextjs/workflow-example.md +553 -0
- package/proagents/examples/mobile-react-native/README.md +171 -0
- package/proagents/examples/mobile-react-native/complete-conversation.md +825 -0
- package/proagents/examples/mobile-react-native/proagents.config.yaml +330 -0
- package/proagents/examples/mobile-react-native/workflow-example.md +723 -0
- package/proagents/examples/web-frontend-react/README.md +125 -0
- package/proagents/examples/web-frontend-react/complete-conversation.md +556 -0
- package/proagents/examples/web-frontend-react/proagents.config.yaml +183 -0
- package/proagents/examples/web-frontend-react/workflow-example.md +603 -0
- package/proagents/existing-projects/README.md +65 -0
- package/proagents/existing-projects/challenges.md +861 -0
- package/proagents/existing-projects/coexistence-mode.md +483 -0
- package/proagents/existing-projects/compatibility-assessment.md +541 -0
- package/proagents/existing-projects/gradual-adoption.md +515 -0
- package/proagents/existing-projects/migration-strategies.md +788 -0
- package/proagents/existing-projects/pattern-reconciliation.md +489 -0
- package/proagents/existing-projects/team-onboarding.md +617 -0
- package/proagents/existing-projects/technical-debt-handling.md +644 -0
- package/proagents/feature-flags/README.md +263 -0
- package/proagents/feature-flags/ab-testing.md +413 -0
- package/proagents/feature-flags/configuration.md +420 -0
- package/proagents/feature-flags/kill-switches.md +444 -0
- package/proagents/feature-flags/rollout-strategies.md +392 -0
- package/proagents/getting-started/README.md +60 -0
- package/proagents/getting-started/ai-training-setup.md +380 -0
- package/proagents/getting-started/ide-setup.md +195 -0
- package/proagents/getting-started/mcp-setup.md +239 -0
- package/proagents/getting-started/pm-integration.md +336 -0
- package/proagents/getting-started/prompt-engineering.md +478 -0
- package/proagents/getting-started/team-onboarding.md +236 -0
- package/proagents/git/README.md +68 -0
- package/proagents/git/branch-strategy.md +164 -0
- package/proagents/git/commit-conventions.md +241 -0
- package/proagents/git/pr-workflow.md +286 -0
- package/proagents/git/rollback-procedures.md +416 -0
- package/proagents/i18n/README.md +133 -0
- package/proagents/i18n/extraction.md +433 -0
- package/proagents/i18n/tms-integration.md +332 -0
- package/proagents/i18n/translation-workflow.md +413 -0
- package/proagents/i18n/validation.md +355 -0
- package/proagents/ide-integration/README.md +124 -0
- package/proagents/ide-integration/cline-config.md +429 -0
- package/proagents/ide-integration/continue-config.md +380 -0
- package/proagents/ide-integration/cursor-rules.md +280 -0
- package/proagents/ide-integration/github-copilot.md +384 -0
- package/proagents/ide-integration/windsurf-rules.md +314 -0
- package/proagents/integrations/README.md +97 -0
- package/proagents/integrations/pm/README.md +344 -0
- package/proagents/learning/README.md +136 -0
- package/proagents/learning/adaptation.md +305 -0
- package/proagents/learning/data-collection.md +283 -0
- package/proagents/learning/implementation-guide.md +865 -0
- package/proagents/learning/reports.md +306 -0
- package/proagents/logging/README.md +276 -0
- package/proagents/logging/aggregation.md +475 -0
- package/proagents/logging/log-levels.md +376 -0
- package/proagents/logging/sensitive-data.md +423 -0
- package/proagents/logging/structured-logging.md +406 -0
- package/proagents/mcp/README.md +133 -0
- package/proagents/mcp/context-providers.md +442 -0
- package/proagents/mcp/server-config.md +306 -0
- package/proagents/mcp/tools-definition.md +513 -0
- package/proagents/metrics/README.md +174 -0
- package/proagents/metrics/code-quality-kpis.md +461 -0
- package/proagents/metrics/deployment-metrics.md +517 -0
- package/proagents/metrics/developer-productivity.md +368 -0
- package/proagents/metrics/learning-effectiveness.md +478 -0
- package/proagents/migrations/README.md +77 -0
- package/proagents/migrations/from-claude-projects.md +312 -0
- package/proagents/migrations/from-cursor-rules.md +345 -0
- package/proagents/migrations/from-custom-workflows.md +410 -0
- package/proagents/monitoring/README.md +308 -0
- package/proagents/monitoring/alerting.md +449 -0
- package/proagents/monitoring/dashboards.md +454 -0
- package/proagents/monitoring/health-checks.md +436 -0
- package/proagents/monitoring/metrics.md +434 -0
- package/proagents/multi-project/README.md +170 -0
- package/proagents/multi-project/coordinated-deploy.md +510 -0
- package/proagents/multi-project/cross-project-deps.md +395 -0
- package/proagents/multi-project/unified-changelog.md +477 -0
- package/proagents/multi-project/walkthroughs/monorepo-setup.md +787 -0
- package/proagents/multi-project/workspace-config.md +408 -0
- package/proagents/notifications/README.md +151 -0
- package/proagents/notifications/channels.md +457 -0
- package/proagents/notifications/preferences.md +415 -0
- package/proagents/notifications/routing.md +449 -0
- package/proagents/notifications/scheduling.md +425 -0
- package/proagents/notifications/templates.md +446 -0
- package/proagents/offline-mode/README.md +145 -0
- package/proagents/offline-mode/caching.md +344 -0
- package/proagents/offline-mode/offline-operations.md +312 -0
- package/proagents/offline-mode/queue-specifications.md +679 -0
- package/proagents/offline-mode/sync.md +475 -0
- package/proagents/parallel-features/README.md +85 -0
- package/proagents/parallel-features/conflict-detection.md +226 -0
- package/proagents/parallel-features/dependency-management.md +392 -0
- package/proagents/parallel-features/merge-coordination.md +506 -0
- package/proagents/parallel-features/tracking-system.md +416 -0
- package/proagents/patterns/README.md +305 -0
- package/proagents/patterns/api-errors.md +453 -0
- package/proagents/patterns/async-errors.md +521 -0
- package/proagents/patterns/error-types.md +437 -0
- package/proagents/patterns/ui-errors.md +595 -0
- package/proagents/performance/README.md +59 -0
- package/proagents/performance/bundle-analysis.md +375 -0
- package/proagents/performance/load-testing.md +563 -0
- package/proagents/performance/runtime-metrics.md +489 -0
- package/proagents/performance/web-vitals.md +425 -0
- package/proagents/plugins/README.md +139 -0
- package/proagents/plugins/creating-plugins.md +504 -0
- package/proagents/plugins/plugin-api.md +467 -0
- package/proagents/plugins/plugin-registry.md +276 -0
- package/proagents/pm-integration/README.md +151 -0
- package/proagents/pm-integration/asana.md +346 -0
- package/proagents/pm-integration/github-issues.md +308 -0
- package/proagents/pm-integration/gitlab-issues.md +482 -0
- package/proagents/pm-integration/jira.md +364 -0
- package/proagents/pm-integration/linear.md +409 -0
- package/proagents/pm-integration/notion.md +275 -0
- package/proagents/pm-integration/sync-config.md +533 -0
- package/proagents/pm-integration/trello.md +159 -0
- package/proagents/proagents.config.yaml +213 -0
- package/proagents/prompts/00-init-wizard.md +426 -0
- package/proagents/prompts/00-init.md +219 -0
- package/proagents/prompts/01-analysis.md +244 -0
- package/proagents/prompts/02-requirements.md +399 -0
- package/proagents/prompts/03-ui-design.md +493 -0
- package/proagents/prompts/04-planning.md +505 -0
- package/proagents/prompts/05-implementation.md +518 -0
- package/proagents/prompts/06-testing.md +620 -0
- package/proagents/prompts/06.5-code-review.md +512 -0
- package/proagents/prompts/07-documentation.md +673 -0
- package/proagents/prompts/08-deployment.md +539 -0
- package/proagents/prompts/09-rollback.md +554 -0
- package/proagents/prompts/README.md +51 -0
- package/proagents/prompts/accessibility/README.md +146 -0
- package/proagents/prompts/accessibility/aria.md +276 -0
- package/proagents/prompts/accessibility/audit.md +233 -0
- package/proagents/prompts/accessibility/keyboard.md +392 -0
- package/proagents/prompts/accessibility/wcag.md +189 -0
- package/proagents/prompts/debugging/README.md +51 -0
- package/proagents/prompts/debugging/error-analysis.md +385 -0
- package/proagents/prompts/debugging/performance-debug.md +381 -0
- package/proagents/prompts/debugging/systematic.md +270 -0
- package/proagents/prompts/performance/README.md +47 -0
- package/proagents/prompts/performance/analyze.md +265 -0
- package/proagents/prompts/performance/optimize.md +347 -0
- package/proagents/prompts/refactoring/README.md +51 -0
- package/proagents/prompts/refactoring/architecture.md +531 -0
- package/proagents/prompts/refactoring/code-smells.md +174 -0
- package/proagents/prompts/refactoring/patterns.md +516 -0
- package/proagents/prompts/security-audit/README.md +197 -0
- package/proagents/prompts/security-audit/code-review.md +260 -0
- package/proagents/prompts/security-audit/vulnerability-scan.md +288 -0
- package/proagents/reporting/README.md +158 -0
- package/proagents/reporting/dashboards.md +366 -0
- package/proagents/reporting/exports.md +524 -0
- package/proagents/reporting/quality-metrics.md +385 -0
- package/proagents/reporting/templates/README.md +56 -0
- package/proagents/reporting/templates/dashboard-config.json +187 -0
- package/proagents/reporting/templates/metrics-queries.md +427 -0
- package/proagents/reporting/templates/react-dashboard.tsx +544 -0
- package/proagents/reporting/templates/widgets.md +451 -0
- package/proagents/reporting/velocity-metrics.md +340 -0
- package/proagents/reverse-engineering/README.md +151 -0
- package/proagents/reverse-engineering/architecture-extraction.md +325 -0
- package/proagents/reverse-engineering/code-analysis.md +377 -0
- package/proagents/reverse-engineering/dependency-mapping.md +567 -0
- package/proagents/reverse-engineering/diagram-generation.md +586 -0
- package/proagents/reverse-engineering/documentation-generation.md +468 -0
- package/proagents/reverse-engineering/pattern-detection.md +569 -0
- package/proagents/reverse-engineering/quality-assessment.md +733 -0
- package/proagents/rules/README.md +179 -0
- package/proagents/rules/custom-rules-template.yaml +286 -0
- package/proagents/rules/custom-rules.md +754 -0
- package/proagents/rules/validation-rules-template.yaml +517 -0
- package/proagents/runbooks/README.md +219 -0
- package/proagents/runbooks/dependency-vulnerability.md +505 -0
- package/proagents/runbooks/incident-response.md +451 -0
- package/proagents/runbooks/performance-degradation.md +584 -0
- package/proagents/runbooks/production-debugging.md +489 -0
- package/proagents/scaffolding/README.md +64 -0
- package/proagents/scaffolding/nextjs/README.md +578 -0
- package/proagents/scaffolding/nextjs/templates/api-route.ts.template +185 -0
- package/proagents/scaffolding/nextjs/templates/page.tsx.template +109 -0
- package/proagents/scaffolding/nextjs/templates/server-action.ts.template +204 -0
- package/proagents/scaffolding/nodejs/README.md +558 -0
- package/proagents/scaffolding/nodejs/templates/controller.ts.template +167 -0
- package/proagents/scaffolding/nodejs/templates/repository.ts.template +155 -0
- package/proagents/scaffolding/nodejs/templates/service.ts.template +207 -0
- package/proagents/scaffolding/project-types.md +401 -0
- package/proagents/scaffolding/react/README.md +399 -0
- package/proagents/scaffolding/react/templates/component.tsx.template +88 -0
- package/proagents/scaffolding/react/templates/hook.ts.template +127 -0
- package/proagents/scaffolding/react/templates/service.ts.template +155 -0
- package/proagents/scaffolding/react/templates/test.tsx.template +149 -0
- package/proagents/scaffolding/react-native/README.md +476 -0
- package/proagents/scaffolding/react-native/templates/hook.ts.template +226 -0
- package/proagents/scaffolding/react-native/templates/screen.tsx.template +247 -0
- package/proagents/secrets/README.md +278 -0
- package/proagents/secrets/access-control.md +443 -0
- package/proagents/secrets/rotation.md +403 -0
- package/proagents/secrets/scanning.md +487 -0
- package/proagents/secrets/storage.md +394 -0
- package/proagents/security/README.md +71 -0
- package/proagents/security/owasp-checklist.md +390 -0
- package/proagents/security/sast-guide.md +473 -0
- package/proagents/security/security-report-template.md +343 -0
- package/proagents/security/vulnerability-scanning.md +329 -0
- package/proagents/slash-commands.json +161 -0
- package/proagents/standards/README.md +120 -0
- package/proagents/standards/architecture-patterns.md +728 -0
- package/proagents/standards/architecture-rules-template.md +489 -0
- package/proagents/standards/coding-standards-template.md +489 -0
- package/proagents/standards/examples/README.md +61 -0
- package/proagents/standards/examples/nodejs-api.md +560 -0
- package/proagents/standards/examples/react-nextjs.md +428 -0
- package/proagents/standards/naming-conventions-template.md +526 -0
- package/proagents/standards/override-system.md +717 -0
- package/proagents/standards/testing-standards-template.md +220 -0
- package/proagents/team/README.md +256 -0
- package/proagents/team/code-ownership.md +306 -0
- package/proagents/team/communication-templates.md +441 -0
- package/proagents/team/handoff-protocol.md +380 -0
- package/proagents/team/ide-setup/README.md +103 -0
- package/proagents/team/ide-setup/cursor.md +276 -0
- package/proagents/team/ide-setup/jetbrains.md +330 -0
- package/proagents/team/ide-setup/neovim.md +640 -0
- package/proagents/team/ide-setup/vscode.md +348 -0
- package/proagents/team/onboarding.md +278 -0
- package/proagents/templates/README.md +57 -0
- package/proagents/templates/code-review-report.md +255 -0
- package/proagents/templates/codebase-analysis-report.md +315 -0
- package/proagents/templates/deployment-checklist.md +277 -0
- package/proagents/templates/feature-requirements.md +142 -0
- package/proagents/templates/feature-status.md +231 -0
- package/proagents/templates/implementation-plan.md +373 -0
- package/proagents/templates/rollback-plan.md +331 -0
- package/proagents/templates/test-plan.md +336 -0
- package/proagents/templates/ui-specification.md +431 -0
- package/proagents/testing-standards/README.md +229 -0
- package/proagents/testing-standards/coverage-requirements.md +198 -0
- package/proagents/testing-standards/mocking-guidelines.md +478 -0
- package/proagents/testing-standards/test-naming.md +485 -0
- package/proagents/testing-standards/test-patterns.md +488 -0
- package/proagents/troubleshooting/README.md +730 -0
- package/proagents/troubleshooting/ai-issues.md +601 -0
- package/proagents/troubleshooting/workflow-issues.md +571 -0
- package/proagents/ui-integration/README.md +77 -0
- package/proagents/ui-integration/figma-guide.md +217 -0
- package/proagents/ui-integration/manual-export-guide.md +358 -0
- package/proagents/ui-integration/sketch-interpretation.md +471 -0
- package/proagents/webhooks/README.md +126 -0
- package/proagents/webhooks/endpoints.md +298 -0
- package/proagents/webhooks/events.md +316 -0
- package/proagents/webhooks/payloads.md +325 -0
- package/proagents/webhooks/reliability.md +363 -0
- package/proagents/webhooks/security.md +380 -0
- package/proagents/workflow-modes/README.md +136 -0
- package/proagents/workflow-modes/deferred-tracking.md +405 -0
- package/proagents/workflow-modes/entry-modes.md +397 -0
- package/proagents/workflow-modes/guardrails.md +405 -0
- package/proagents/workflow-modes/mode-detection.md +358 -0
- package/proagents/workflow-modes/mode-switching.md +372 -0
|
@@ -0,0 +1,346 @@
|
|
|
1
|
+
# Asana Integration
|
|
2
|
+
|
|
3
|
+
Task management integration with Asana for cross-functional teams.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Setup
|
|
8
|
+
|
|
9
|
+
### 1. Create Personal Access Token
|
|
10
|
+
|
|
11
|
+
1. Go to [Asana Developer Console](https://app.asana.com/0/developer-console)
|
|
12
|
+
2. Create a Personal Access Token
|
|
13
|
+
3. Copy the token
|
|
14
|
+
|
|
15
|
+
### 2. Configure Connection
|
|
16
|
+
|
|
17
|
+
```yaml
|
|
18
|
+
# proagents.config.yaml
|
|
19
|
+
|
|
20
|
+
integrations:
|
|
21
|
+
asana:
|
|
22
|
+
enabled: true
|
|
23
|
+
token_env: "ASANA_TOKEN"
|
|
24
|
+
|
|
25
|
+
# Workspace and project
|
|
26
|
+
workspace_gid: "your-workspace-gid"
|
|
27
|
+
project_gid: "your-project-gid"
|
|
28
|
+
|
|
29
|
+
# Optional: Team
|
|
30
|
+
team_gid: "your-team-gid"
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### 3. Set Environment Variable
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
export ASANA_TOKEN="your-personal-access-token"
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### 4. Verify Connection
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
proagents pm connect asana
|
|
43
|
+
proagents pm status
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
## Section Mapping
|
|
49
|
+
|
|
50
|
+
Map ProAgents phases to Asana sections:
|
|
51
|
+
|
|
52
|
+
```yaml
|
|
53
|
+
integrations:
|
|
54
|
+
asana:
|
|
55
|
+
sections:
|
|
56
|
+
# Section mapping
|
|
57
|
+
mapping:
|
|
58
|
+
backlog: "Backlog"
|
|
59
|
+
in_progress: "In Progress"
|
|
60
|
+
review: "In Review"
|
|
61
|
+
done: "Done"
|
|
62
|
+
|
|
63
|
+
# Phase to section
|
|
64
|
+
phase_mapping:
|
|
65
|
+
init: "Backlog"
|
|
66
|
+
analysis: "In Progress"
|
|
67
|
+
implementation: "In Progress"
|
|
68
|
+
testing: "In Review"
|
|
69
|
+
review: "In Review"
|
|
70
|
+
deployed: "Done"
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
---
|
|
74
|
+
|
|
75
|
+
## Task Configuration
|
|
76
|
+
|
|
77
|
+
### Task Template
|
|
78
|
+
|
|
79
|
+
```yaml
|
|
80
|
+
integrations:
|
|
81
|
+
asana:
|
|
82
|
+
task_template:
|
|
83
|
+
name: "{{feature_name}}"
|
|
84
|
+
|
|
85
|
+
notes: |
|
|
86
|
+
## Description
|
|
87
|
+
{{feature_description}}
|
|
88
|
+
|
|
89
|
+
## Acceptance Criteria
|
|
90
|
+
{{acceptance_criteria}}
|
|
91
|
+
|
|
92
|
+
---
|
|
93
|
+
Managed by ProAgents
|
|
94
|
+
|
|
95
|
+
# Custom fields
|
|
96
|
+
custom_fields:
|
|
97
|
+
- name: "Phase"
|
|
98
|
+
value: "{{current_phase}}"
|
|
99
|
+
- name: "Type"
|
|
100
|
+
value: "Feature"
|
|
101
|
+
- name: "Branch"
|
|
102
|
+
value: "{{branch_name}}"
|
|
103
|
+
|
|
104
|
+
# Tags
|
|
105
|
+
tags:
|
|
106
|
+
- "proagents"
|
|
107
|
+
- "{{entry_mode}}"
|
|
108
|
+
|
|
109
|
+
# Due date
|
|
110
|
+
due_on: "{{due_date}}"
|
|
111
|
+
|
|
112
|
+
# Assignee
|
|
113
|
+
assignee: "{{asana_user_gid}}"
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
### Subtasks
|
|
117
|
+
|
|
118
|
+
```yaml
|
|
119
|
+
integrations:
|
|
120
|
+
asana:
|
|
121
|
+
subtasks:
|
|
122
|
+
enabled: true
|
|
123
|
+
template:
|
|
124
|
+
- name: "Analysis complete"
|
|
125
|
+
completed: false
|
|
126
|
+
- name: "Implementation complete"
|
|
127
|
+
completed: false
|
|
128
|
+
- name: "Tests passing"
|
|
129
|
+
completed: false
|
|
130
|
+
- name: "Code reviewed"
|
|
131
|
+
completed: false
|
|
132
|
+
- name: "Documentation updated"
|
|
133
|
+
completed: false
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
---
|
|
137
|
+
|
|
138
|
+
## Auto-Actions
|
|
139
|
+
|
|
140
|
+
### On Feature Start
|
|
141
|
+
|
|
142
|
+
```yaml
|
|
143
|
+
integrations:
|
|
144
|
+
asana:
|
|
145
|
+
on_feature_start:
|
|
146
|
+
action: "create_task"
|
|
147
|
+
|
|
148
|
+
task:
|
|
149
|
+
name: "{{feature_name}}"
|
|
150
|
+
notes: "{{task_template}}"
|
|
151
|
+
section: "In Progress"
|
|
152
|
+
assignee: "{{user}}"
|
|
153
|
+
tags: ["proagents"]
|
|
154
|
+
|
|
155
|
+
# Create subtasks
|
|
156
|
+
create_subtasks: true
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
### On Phase Change
|
|
160
|
+
|
|
161
|
+
```yaml
|
|
162
|
+
integrations:
|
|
163
|
+
asana:
|
|
164
|
+
on_phase_change:
|
|
165
|
+
# Move to appropriate section
|
|
166
|
+
move_section: true
|
|
167
|
+
|
|
168
|
+
# Update custom field
|
|
169
|
+
update_field:
|
|
170
|
+
name: "Phase"
|
|
171
|
+
value: "{{current_phase}}"
|
|
172
|
+
|
|
173
|
+
# Add comment (story)
|
|
174
|
+
add_comment: |
|
|
175
|
+
**Phase Update**: {{current_phase}}
|
|
176
|
+
{{phase_summary}}
|
|
177
|
+
|
|
178
|
+
# Update subtask if applicable
|
|
179
|
+
complete_subtask: "{{completed_subtask}}"
|
|
180
|
+
```
|
|
181
|
+
|
|
182
|
+
### On Feature Complete
|
|
183
|
+
|
|
184
|
+
```yaml
|
|
185
|
+
integrations:
|
|
186
|
+
asana:
|
|
187
|
+
on_feature_complete:
|
|
188
|
+
# Move to done
|
|
189
|
+
move_section: "Done"
|
|
190
|
+
|
|
191
|
+
# Complete task
|
|
192
|
+
complete_task: true
|
|
193
|
+
|
|
194
|
+
# Add final comment
|
|
195
|
+
add_comment: |
|
|
196
|
+
**Completed**
|
|
197
|
+
|
|
198
|
+
- Duration: {{total_duration}}
|
|
199
|
+
- PR: {{pr_link}}
|
|
200
|
+
- Coverage: {{test_coverage}}%
|
|
201
|
+
|
|
202
|
+
# Complete remaining subtasks
|
|
203
|
+
complete_all_subtasks: true
|
|
204
|
+
```
|
|
205
|
+
|
|
206
|
+
---
|
|
207
|
+
|
|
208
|
+
## Portfolio Integration
|
|
209
|
+
|
|
210
|
+
### Project Portfolios
|
|
211
|
+
|
|
212
|
+
```yaml
|
|
213
|
+
integrations:
|
|
214
|
+
asana:
|
|
215
|
+
portfolios:
|
|
216
|
+
enabled: true
|
|
217
|
+
portfolio_gid: "portfolio-gid"
|
|
218
|
+
|
|
219
|
+
# Status updates
|
|
220
|
+
status_updates:
|
|
221
|
+
frequency: "weekly"
|
|
222
|
+
include:
|
|
223
|
+
- features_completed
|
|
224
|
+
- features_in_progress
|
|
225
|
+
- blockers
|
|
226
|
+
```
|
|
227
|
+
|
|
228
|
+
### Goals Integration
|
|
229
|
+
|
|
230
|
+
```yaml
|
|
231
|
+
integrations:
|
|
232
|
+
asana:
|
|
233
|
+
goals:
|
|
234
|
+
enabled: true
|
|
235
|
+
|
|
236
|
+
# Link features to goals
|
|
237
|
+
goal_mapping:
|
|
238
|
+
- feature_type: "user_growth"
|
|
239
|
+
goal_gid: "goal-1"
|
|
240
|
+
- feature_type: "performance"
|
|
241
|
+
goal_gid: "goal-2"
|
|
242
|
+
```
|
|
243
|
+
|
|
244
|
+
---
|
|
245
|
+
|
|
246
|
+
## Custom Fields
|
|
247
|
+
|
|
248
|
+
### Define Custom Fields
|
|
249
|
+
|
|
250
|
+
```yaml
|
|
251
|
+
integrations:
|
|
252
|
+
asana:
|
|
253
|
+
custom_fields:
|
|
254
|
+
phase:
|
|
255
|
+
gid: "field-gid-1"
|
|
256
|
+
type: "enum"
|
|
257
|
+
options:
|
|
258
|
+
- "Analysis"
|
|
259
|
+
- "Implementation"
|
|
260
|
+
- "Testing"
|
|
261
|
+
- "Review"
|
|
262
|
+
- "Done"
|
|
263
|
+
|
|
264
|
+
type:
|
|
265
|
+
gid: "field-gid-2"
|
|
266
|
+
type: "enum"
|
|
267
|
+
options:
|
|
268
|
+
- "Feature"
|
|
269
|
+
- "Bug Fix"
|
|
270
|
+
- "Refactor"
|
|
271
|
+
|
|
272
|
+
branch:
|
|
273
|
+
gid: "field-gid-3"
|
|
274
|
+
type: "text"
|
|
275
|
+
|
|
276
|
+
pr_link:
|
|
277
|
+
gid: "field-gid-4"
|
|
278
|
+
type: "text"
|
|
279
|
+
|
|
280
|
+
test_coverage:
|
|
281
|
+
gid: "field-gid-5"
|
|
282
|
+
type: "number"
|
|
283
|
+
```
|
|
284
|
+
|
|
285
|
+
---
|
|
286
|
+
|
|
287
|
+
## Commands
|
|
288
|
+
|
|
289
|
+
```bash
|
|
290
|
+
# Link to existing task
|
|
291
|
+
proagents pm link --task "task-gid"
|
|
292
|
+
|
|
293
|
+
# Create new task
|
|
294
|
+
proagents pm create --title "Feature name"
|
|
295
|
+
|
|
296
|
+
# Update task
|
|
297
|
+
proagents pm update --section "In Review"
|
|
298
|
+
|
|
299
|
+
# Complete task
|
|
300
|
+
proagents pm complete
|
|
301
|
+
|
|
302
|
+
# Add comment
|
|
303
|
+
proagents pm comment "Status update"
|
|
304
|
+
|
|
305
|
+
# List tasks
|
|
306
|
+
proagents pm list --section "In Progress"
|
|
307
|
+
```
|
|
308
|
+
|
|
309
|
+
---
|
|
310
|
+
|
|
311
|
+
## Webhooks
|
|
312
|
+
|
|
313
|
+
### Configure Webhooks
|
|
314
|
+
|
|
315
|
+
```yaml
|
|
316
|
+
integrations:
|
|
317
|
+
asana:
|
|
318
|
+
webhooks:
|
|
319
|
+
enabled: true
|
|
320
|
+
endpoint: "/webhooks/asana"
|
|
321
|
+
|
|
322
|
+
# Events to listen for
|
|
323
|
+
events:
|
|
324
|
+
- "changed"
|
|
325
|
+
- "added"
|
|
326
|
+
- "removed"
|
|
327
|
+
|
|
328
|
+
# Actions
|
|
329
|
+
actions:
|
|
330
|
+
on_task_completed:
|
|
331
|
+
action: "mark_feature_complete"
|
|
332
|
+
|
|
333
|
+
on_task_assigned:
|
|
334
|
+
action: "notify_assignee"
|
|
335
|
+
```
|
|
336
|
+
|
|
337
|
+
---
|
|
338
|
+
|
|
339
|
+
## Best Practices
|
|
340
|
+
|
|
341
|
+
1. **Use Sections**: Organize by workflow stage
|
|
342
|
+
2. **Custom Fields**: Track phase and metadata
|
|
343
|
+
3. **Subtasks**: Break down into trackable items
|
|
344
|
+
4. **Tags**: Categorize for filtering
|
|
345
|
+
5. **Dependencies**: Link related tasks
|
|
346
|
+
6. **Portfolios**: Roll up to project level
|
|
@@ -0,0 +1,308 @@
|
|
|
1
|
+
# GitHub Issues Integration
|
|
2
|
+
|
|
3
|
+
Native integration with GitHub Issues and Projects.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Setup
|
|
8
|
+
|
|
9
|
+
### 1. Authentication
|
|
10
|
+
|
|
11
|
+
GitHub integration uses your existing GitHub authentication:
|
|
12
|
+
|
|
13
|
+
```yaml
|
|
14
|
+
# proagents.config.yaml
|
|
15
|
+
|
|
16
|
+
integrations:
|
|
17
|
+
github:
|
|
18
|
+
enabled: true
|
|
19
|
+
# Uses GITHUB_TOKEN or gh CLI authentication
|
|
20
|
+
|
|
21
|
+
# Repository
|
|
22
|
+
owner: "your-org"
|
|
23
|
+
repo: "your-repo"
|
|
24
|
+
|
|
25
|
+
# Optional: GitHub Projects
|
|
26
|
+
project_number: 1 # Project board number
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
### 2. Verify Connection
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
proagents pm connect github
|
|
33
|
+
proagents pm status
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
## Issue Configuration
|
|
39
|
+
|
|
40
|
+
### Label Mapping
|
|
41
|
+
|
|
42
|
+
```yaml
|
|
43
|
+
integrations:
|
|
44
|
+
github:
|
|
45
|
+
labels:
|
|
46
|
+
# Entry mode labels
|
|
47
|
+
feature: "enhancement"
|
|
48
|
+
bug_fix: "bug"
|
|
49
|
+
quick_change: "quick-fix"
|
|
50
|
+
refactor: "refactor"
|
|
51
|
+
|
|
52
|
+
# Phase labels
|
|
53
|
+
phases:
|
|
54
|
+
analysis: "phase:analysis"
|
|
55
|
+
implementation: "phase:implementation"
|
|
56
|
+
testing: "phase:testing"
|
|
57
|
+
review: "phase:review"
|
|
58
|
+
|
|
59
|
+
# ProAgents label
|
|
60
|
+
managed: "proagents-managed"
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
### Issue Template
|
|
64
|
+
|
|
65
|
+
```yaml
|
|
66
|
+
integrations:
|
|
67
|
+
github:
|
|
68
|
+
issue_template:
|
|
69
|
+
title: "{{feature_name}}"
|
|
70
|
+
body: |
|
|
71
|
+
## Description
|
|
72
|
+
{{feature_description}}
|
|
73
|
+
|
|
74
|
+
## Acceptance Criteria
|
|
75
|
+
{{acceptance_criteria}}
|
|
76
|
+
|
|
77
|
+
## Tasks
|
|
78
|
+
- [ ] Analysis complete
|
|
79
|
+
- [ ] Implementation complete
|
|
80
|
+
- [ ] Tests passing
|
|
81
|
+
- [ ] Code reviewed
|
|
82
|
+
|
|
83
|
+
---
|
|
84
|
+
*Managed by ProAgents*
|
|
85
|
+
|
|
86
|
+
labels:
|
|
87
|
+
- "enhancement"
|
|
88
|
+
- "proagents-managed"
|
|
89
|
+
|
|
90
|
+
assignees:
|
|
91
|
+
- "{{github_username}}"
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
---
|
|
95
|
+
|
|
96
|
+
## Auto-Actions
|
|
97
|
+
|
|
98
|
+
### On Feature Start
|
|
99
|
+
|
|
100
|
+
```yaml
|
|
101
|
+
integrations:
|
|
102
|
+
github:
|
|
103
|
+
on_feature_start:
|
|
104
|
+
# Create or link issue
|
|
105
|
+
action: "create_or_link"
|
|
106
|
+
|
|
107
|
+
# If creating new issue
|
|
108
|
+
create:
|
|
109
|
+
title: "{{feature_name}}"
|
|
110
|
+
body: "{{issue_template}}"
|
|
111
|
+
labels: ["enhancement", "proagents-managed"]
|
|
112
|
+
assignees: ["{{user}}"]
|
|
113
|
+
|
|
114
|
+
# Add to project board
|
|
115
|
+
add_to_project: true
|
|
116
|
+
project_column: "In Progress"
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
### On Phase Change
|
|
120
|
+
|
|
121
|
+
```yaml
|
|
122
|
+
integrations:
|
|
123
|
+
github:
|
|
124
|
+
on_phase_change:
|
|
125
|
+
# Update labels
|
|
126
|
+
update_labels:
|
|
127
|
+
remove: ["phase:*"] # Remove old phase label
|
|
128
|
+
add: ["phase:{{current_phase}}"]
|
|
129
|
+
|
|
130
|
+
# Add comment
|
|
131
|
+
add_comment: |
|
|
132
|
+
**Phase Update**: {{current_phase}}
|
|
133
|
+
|
|
134
|
+
{{phase_summary}}
|
|
135
|
+
|
|
136
|
+
# Move in project
|
|
137
|
+
move_in_project:
|
|
138
|
+
column: "{{phase_to_column}}"
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
### On PR Created
|
|
142
|
+
|
|
143
|
+
```yaml
|
|
144
|
+
integrations:
|
|
145
|
+
github:
|
|
146
|
+
on_pr_created:
|
|
147
|
+
# Link PR to issue
|
|
148
|
+
link_to_issue: true
|
|
149
|
+
|
|
150
|
+
# Add comment to issue
|
|
151
|
+
add_comment: |
|
|
152
|
+
PR created: #{{pr_number}}
|
|
153
|
+
|
|
154
|
+
# Update project
|
|
155
|
+
move_in_project:
|
|
156
|
+
column: "In Review"
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
### On Feature Complete
|
|
160
|
+
|
|
161
|
+
```yaml
|
|
162
|
+
integrations:
|
|
163
|
+
github:
|
|
164
|
+
on_feature_complete:
|
|
165
|
+
# Close issue
|
|
166
|
+
close_issue: true
|
|
167
|
+
|
|
168
|
+
# Add final comment
|
|
169
|
+
add_comment: |
|
|
170
|
+
**Feature Completed**
|
|
171
|
+
|
|
172
|
+
- Duration: {{total_duration}}
|
|
173
|
+
- PR: #{{pr_number}}
|
|
174
|
+
- Test Coverage: {{test_coverage}}%
|
|
175
|
+
|
|
176
|
+
# Move in project
|
|
177
|
+
move_in_project:
|
|
178
|
+
column: "Done"
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
---
|
|
182
|
+
|
|
183
|
+
## GitHub Projects Integration
|
|
184
|
+
|
|
185
|
+
### Project Board Setup
|
|
186
|
+
|
|
187
|
+
```yaml
|
|
188
|
+
integrations:
|
|
189
|
+
github:
|
|
190
|
+
projects:
|
|
191
|
+
enabled: true
|
|
192
|
+
project_number: 1
|
|
193
|
+
|
|
194
|
+
# Column mapping
|
|
195
|
+
columns:
|
|
196
|
+
backlog: "Backlog"
|
|
197
|
+
in_progress: "In Progress"
|
|
198
|
+
review: "In Review"
|
|
199
|
+
done: "Done"
|
|
200
|
+
|
|
201
|
+
# Custom fields (Projects V2)
|
|
202
|
+
fields:
|
|
203
|
+
phase:
|
|
204
|
+
name: "Phase"
|
|
205
|
+
type: "single_select"
|
|
206
|
+
priority:
|
|
207
|
+
name: "Priority"
|
|
208
|
+
type: "single_select"
|
|
209
|
+
```
|
|
210
|
+
|
|
211
|
+
### Auto-Move Cards
|
|
212
|
+
|
|
213
|
+
```yaml
|
|
214
|
+
integrations:
|
|
215
|
+
github:
|
|
216
|
+
projects:
|
|
217
|
+
auto_move:
|
|
218
|
+
# Move on issue events
|
|
219
|
+
on_issue_opened: "Backlog"
|
|
220
|
+
on_issue_assigned: "In Progress"
|
|
221
|
+
on_pr_opened: "In Review"
|
|
222
|
+
on_pr_merged: "Done"
|
|
223
|
+
on_issue_closed: "Done"
|
|
224
|
+
```
|
|
225
|
+
|
|
226
|
+
---
|
|
227
|
+
|
|
228
|
+
## Smart Linking
|
|
229
|
+
|
|
230
|
+
### Branch to Issue
|
|
231
|
+
|
|
232
|
+
```yaml
|
|
233
|
+
integrations:
|
|
234
|
+
github:
|
|
235
|
+
smart_linking:
|
|
236
|
+
# Extract issue number from branch name
|
|
237
|
+
branch_pattern: "^(?:feature|fix)/(?:GH-)?(\d+)"
|
|
238
|
+
|
|
239
|
+
# Auto-link PR to issue
|
|
240
|
+
auto_link_pr: true
|
|
241
|
+
|
|
242
|
+
# Close issue on PR merge
|
|
243
|
+
close_on_merge: true
|
|
244
|
+
```
|
|
245
|
+
|
|
246
|
+
### Commit Messages
|
|
247
|
+
|
|
248
|
+
```yaml
|
|
249
|
+
integrations:
|
|
250
|
+
github:
|
|
251
|
+
commits:
|
|
252
|
+
# Reference issue in commits
|
|
253
|
+
template: "{{message}}\n\nRefs: #{{issue_number}}"
|
|
254
|
+
|
|
255
|
+
# Close keywords
|
|
256
|
+
close_keywords: ["fixes", "closes", "resolves"]
|
|
257
|
+
```
|
|
258
|
+
|
|
259
|
+
---
|
|
260
|
+
|
|
261
|
+
## Commands
|
|
262
|
+
|
|
263
|
+
```bash
|
|
264
|
+
# Link to existing issue
|
|
265
|
+
proagents pm link --issue 123
|
|
266
|
+
|
|
267
|
+
# Create new issue
|
|
268
|
+
proagents pm create --title "Feature name"
|
|
269
|
+
|
|
270
|
+
# Update issue
|
|
271
|
+
proagents pm update --labels "phase:testing"
|
|
272
|
+
|
|
273
|
+
# Close issue
|
|
274
|
+
proagents pm close --issue 123
|
|
275
|
+
|
|
276
|
+
# List issues
|
|
277
|
+
proagents pm list --state open --label "proagents-managed"
|
|
278
|
+
|
|
279
|
+
# Move in project
|
|
280
|
+
proagents pm move --column "In Review"
|
|
281
|
+
```
|
|
282
|
+
|
|
283
|
+
---
|
|
284
|
+
|
|
285
|
+
## GitHub CLI Integration
|
|
286
|
+
|
|
287
|
+
ProAgents uses `gh` CLI when available:
|
|
288
|
+
|
|
289
|
+
```bash
|
|
290
|
+
# Authenticate
|
|
291
|
+
gh auth login
|
|
292
|
+
|
|
293
|
+
# ProAgents uses gh for:
|
|
294
|
+
# - Creating issues
|
|
295
|
+
# - Creating PRs
|
|
296
|
+
# - Managing projects
|
|
297
|
+
# - Querying issues
|
|
298
|
+
```
|
|
299
|
+
|
|
300
|
+
---
|
|
301
|
+
|
|
302
|
+
## Best Practices
|
|
303
|
+
|
|
304
|
+
1. **Use Labels**: Consistent labeling for filtering
|
|
305
|
+
2. **Link Everything**: Connect issues, PRs, and commits
|
|
306
|
+
3. **Project Boards**: Use for visual tracking
|
|
307
|
+
4. **Templates**: Create issue templates for consistency
|
|
308
|
+
5. **Automation**: Combine with GitHub Actions
|