├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── SECURITY.yml ├── SUPPORT.md └── workflows │ ├── pr-decline.yml │ └── stale.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config.yml ├── profiles └── default │ ├── agents │ ├── implementation-verifier.md │ ├── implementer.md │ ├── product-planner.md │ ├── spec-initializer.md │ ├── spec-shaper.md │ ├── spec-verifier.md │ ├── spec-writer.md │ └── tasks-list-creator.md │ ├── claude-code-skill-template.md │ ├── commands │ ├── create-tasks │ │ ├── multi-agent │ │ │ └── create-tasks.md │ │ └── single-agent │ │ │ ├── 1-get-spec-requirements.md │ │ │ ├── 2-create-tasks-list.md │ │ │ └── create-tasks.md │ ├── implement-tasks │ │ ├── multi-agent │ │ │ └── implement-tasks.md │ │ └── single-agent │ │ │ ├── 1-determine-tasks.md │ │ │ ├── 2-implement-tasks.md │ │ │ ├── 3-verify-implementation.md │ │ │ └── implement-tasks.md │ ├── improve-skills │ │ └── improve-skills.md │ ├── orchestrate-tasks │ │ └── orchestrate-tasks.md │ ├── plan-product │ │ ├── multi-agent │ │ │ └── plan-product.md │ │ └── single-agent │ │ │ ├── 1-product-concept.md │ │ │ ├── 2-create-mission.md │ │ │ ├── 3-create-roadmap.md │ │ │ ├── 4-create-tech-stack.md │ │ │ └── plan-product.md │ ├── shape-spec │ │ ├── multi-agent │ │ │ └── shape-spec.md │ │ └── single-agent │ │ │ ├── 1-initialize-spec.md │ │ │ ├── 2-shape-spec.md │ │ │ └── shape-spec.md │ └── write-spec │ │ ├── multi-agent │ │ └── write-spec.md │ │ └── single-agent │ │ └── write-spec.md │ ├── standards │ ├── backend │ │ ├── api.md │ │ ├── migrations.md │ │ ├── models.md │ │ └── queries.md │ ├── frontend │ │ ├── accessibility.md │ │ ├── components.md │ │ ├── css.md │ │ └── responsive.md │ ├── global │ │ ├── coding-style.md │ │ ├── commenting.md │ │ ├── conventions.md │ │ ├── error-handling.md │ │ ├── tech-stack.md │ │ └── validation.md │ └── testing │ │ └── test-writing.md │ └── workflows │ ├── implementation │ ├── compile-implementation-standards.md │ ├── create-tasks-list.md │ ├── implement-tasks.md │ └── verification │ │ ├── create-verification-report.md │ │ ├── run-all-tests.md │ │ ├── update-roadmap.md │ │ └── verify-tasks.md │ ├── planning │ ├── create-product-mission.md │ ├── create-product-roadmap.md │ ├── create-product-tech-stack.md │ └── gather-product-info.md │ └── specification │ ├── initialize-spec.md │ ├── research-spec.md │ ├── verify-spec.md │ └── write-spec.md └── scripts ├── base-install.sh ├── common-functions.sh ├── create-profile.sh ├── project-install.sh └── project-update.sh /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SECURITY.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/.github/SECURITY.yml -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/workflows/pr-decline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/.github/workflows/pr-decline.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/README.md -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/config.yml -------------------------------------------------------------------------------- /profiles/default/agents/implementation-verifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/agents/implementation-verifier.md -------------------------------------------------------------------------------- /profiles/default/agents/implementer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/agents/implementer.md -------------------------------------------------------------------------------- /profiles/default/agents/product-planner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/agents/product-planner.md -------------------------------------------------------------------------------- /profiles/default/agents/spec-initializer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/agents/spec-initializer.md -------------------------------------------------------------------------------- /profiles/default/agents/spec-shaper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/agents/spec-shaper.md -------------------------------------------------------------------------------- /profiles/default/agents/spec-verifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/agents/spec-verifier.md -------------------------------------------------------------------------------- /profiles/default/agents/spec-writer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/agents/spec-writer.md -------------------------------------------------------------------------------- /profiles/default/agents/tasks-list-creator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/agents/tasks-list-creator.md -------------------------------------------------------------------------------- /profiles/default/claude-code-skill-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/claude-code-skill-template.md -------------------------------------------------------------------------------- /profiles/default/commands/create-tasks/multi-agent/create-tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/commands/create-tasks/multi-agent/create-tasks.md -------------------------------------------------------------------------------- /profiles/default/commands/create-tasks/single-agent/1-get-spec-requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/commands/create-tasks/single-agent/1-get-spec-requirements.md -------------------------------------------------------------------------------- /profiles/default/commands/create-tasks/single-agent/2-create-tasks-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/commands/create-tasks/single-agent/2-create-tasks-list.md -------------------------------------------------------------------------------- /profiles/default/commands/create-tasks/single-agent/create-tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/commands/create-tasks/single-agent/create-tasks.md -------------------------------------------------------------------------------- /profiles/default/commands/implement-tasks/multi-agent/implement-tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/commands/implement-tasks/multi-agent/implement-tasks.md -------------------------------------------------------------------------------- /profiles/default/commands/implement-tasks/single-agent/1-determine-tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/commands/implement-tasks/single-agent/1-determine-tasks.md -------------------------------------------------------------------------------- /profiles/default/commands/implement-tasks/single-agent/2-implement-tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/commands/implement-tasks/single-agent/2-implement-tasks.md -------------------------------------------------------------------------------- /profiles/default/commands/implement-tasks/single-agent/3-verify-implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/commands/implement-tasks/single-agent/3-verify-implementation.md -------------------------------------------------------------------------------- /profiles/default/commands/implement-tasks/single-agent/implement-tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/commands/implement-tasks/single-agent/implement-tasks.md -------------------------------------------------------------------------------- /profiles/default/commands/improve-skills/improve-skills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/commands/improve-skills/improve-skills.md -------------------------------------------------------------------------------- /profiles/default/commands/orchestrate-tasks/orchestrate-tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/commands/orchestrate-tasks/orchestrate-tasks.md -------------------------------------------------------------------------------- /profiles/default/commands/plan-product/multi-agent/plan-product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/commands/plan-product/multi-agent/plan-product.md -------------------------------------------------------------------------------- /profiles/default/commands/plan-product/single-agent/1-product-concept.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/commands/plan-product/single-agent/1-product-concept.md -------------------------------------------------------------------------------- /profiles/default/commands/plan-product/single-agent/2-create-mission.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/commands/plan-product/single-agent/2-create-mission.md -------------------------------------------------------------------------------- /profiles/default/commands/plan-product/single-agent/3-create-roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/commands/plan-product/single-agent/3-create-roadmap.md -------------------------------------------------------------------------------- /profiles/default/commands/plan-product/single-agent/4-create-tech-stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/commands/plan-product/single-agent/4-create-tech-stack.md -------------------------------------------------------------------------------- /profiles/default/commands/plan-product/single-agent/plan-product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/commands/plan-product/single-agent/plan-product.md -------------------------------------------------------------------------------- /profiles/default/commands/shape-spec/multi-agent/shape-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/commands/shape-spec/multi-agent/shape-spec.md -------------------------------------------------------------------------------- /profiles/default/commands/shape-spec/single-agent/1-initialize-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/commands/shape-spec/single-agent/1-initialize-spec.md -------------------------------------------------------------------------------- /profiles/default/commands/shape-spec/single-agent/2-shape-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/commands/shape-spec/single-agent/2-shape-spec.md -------------------------------------------------------------------------------- /profiles/default/commands/shape-spec/single-agent/shape-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/commands/shape-spec/single-agent/shape-spec.md -------------------------------------------------------------------------------- /profiles/default/commands/write-spec/multi-agent/write-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/commands/write-spec/multi-agent/write-spec.md -------------------------------------------------------------------------------- /profiles/default/commands/write-spec/single-agent/write-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/commands/write-spec/single-agent/write-spec.md -------------------------------------------------------------------------------- /profiles/default/standards/backend/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/standards/backend/api.md -------------------------------------------------------------------------------- /profiles/default/standards/backend/migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/standards/backend/migrations.md -------------------------------------------------------------------------------- /profiles/default/standards/backend/models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/standards/backend/models.md -------------------------------------------------------------------------------- /profiles/default/standards/backend/queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/standards/backend/queries.md -------------------------------------------------------------------------------- /profiles/default/standards/frontend/accessibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/standards/frontend/accessibility.md -------------------------------------------------------------------------------- /profiles/default/standards/frontend/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/standards/frontend/components.md -------------------------------------------------------------------------------- /profiles/default/standards/frontend/css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/standards/frontend/css.md -------------------------------------------------------------------------------- /profiles/default/standards/frontend/responsive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/standards/frontend/responsive.md -------------------------------------------------------------------------------- /profiles/default/standards/global/coding-style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/standards/global/coding-style.md -------------------------------------------------------------------------------- /profiles/default/standards/global/commenting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/standards/global/commenting.md -------------------------------------------------------------------------------- /profiles/default/standards/global/conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/standards/global/conventions.md -------------------------------------------------------------------------------- /profiles/default/standards/global/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/standards/global/error-handling.md -------------------------------------------------------------------------------- /profiles/default/standards/global/tech-stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/standards/global/tech-stack.md -------------------------------------------------------------------------------- /profiles/default/standards/global/validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/standards/global/validation.md -------------------------------------------------------------------------------- /profiles/default/standards/testing/test-writing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/standards/testing/test-writing.md -------------------------------------------------------------------------------- /profiles/default/workflows/implementation/compile-implementation-standards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/workflows/implementation/compile-implementation-standards.md -------------------------------------------------------------------------------- /profiles/default/workflows/implementation/create-tasks-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/workflows/implementation/create-tasks-list.md -------------------------------------------------------------------------------- /profiles/default/workflows/implementation/implement-tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/workflows/implementation/implement-tasks.md -------------------------------------------------------------------------------- /profiles/default/workflows/implementation/verification/create-verification-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/workflows/implementation/verification/create-verification-report.md -------------------------------------------------------------------------------- /profiles/default/workflows/implementation/verification/run-all-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/workflows/implementation/verification/run-all-tests.md -------------------------------------------------------------------------------- /profiles/default/workflows/implementation/verification/update-roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/workflows/implementation/verification/update-roadmap.md -------------------------------------------------------------------------------- /profiles/default/workflows/implementation/verification/verify-tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/workflows/implementation/verification/verify-tasks.md -------------------------------------------------------------------------------- /profiles/default/workflows/planning/create-product-mission.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/workflows/planning/create-product-mission.md -------------------------------------------------------------------------------- /profiles/default/workflows/planning/create-product-roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/workflows/planning/create-product-roadmap.md -------------------------------------------------------------------------------- /profiles/default/workflows/planning/create-product-tech-stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/workflows/planning/create-product-tech-stack.md -------------------------------------------------------------------------------- /profiles/default/workflows/planning/gather-product-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/workflows/planning/gather-product-info.md -------------------------------------------------------------------------------- /profiles/default/workflows/specification/initialize-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/workflows/specification/initialize-spec.md -------------------------------------------------------------------------------- /profiles/default/workflows/specification/research-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/workflows/specification/research-spec.md -------------------------------------------------------------------------------- /profiles/default/workflows/specification/verify-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/workflows/specification/verify-spec.md -------------------------------------------------------------------------------- /profiles/default/workflows/specification/write-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/profiles/default/workflows/specification/write-spec.md -------------------------------------------------------------------------------- /scripts/base-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/scripts/base-install.sh -------------------------------------------------------------------------------- /scripts/common-functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/scripts/common-functions.sh -------------------------------------------------------------------------------- /scripts/create-profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/scripts/create-profile.sh -------------------------------------------------------------------------------- /scripts/project-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/scripts/project-install.sh -------------------------------------------------------------------------------- /scripts/project-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildermethods/agent-os/HEAD/scripts/project-update.sh --------------------------------------------------------------------------------