├── .claude-plugin └── marketplace.json ├── .claude ├── PRPs │ ├── features │ │ └── completed │ │ │ └── add-prp-core-runner-skill.md │ └── scripts │ │ ├── invoke_command.py │ │ └── prp_workflow.py ├── agents │ ├── codebase-analyst.md │ └── library-researcher.md ├── commands │ ├── code-quality │ │ ├── refactor-simple.md │ │ ├── review-general.md │ │ └── review-staged-unstaged.md │ ├── development │ │ ├── create-pr.md │ │ ├── debug-RCA.md │ │ ├── new-dev-branch.md │ │ ├── onboarding.md │ │ ├── prime-core.md │ │ └── smart-commit.md │ ├── git-operations │ │ ├── conflict-resolver-general.md │ │ ├── conflict-resolver-specific.md │ │ └── smart-resolver.md │ ├── prp-commands │ │ ├── api-contract-define.md │ │ ├── prp-base-create.md │ │ ├── prp-base-execute.md │ │ ├── prp-planning-create.md │ │ ├── prp-poc-create-parallel.md │ │ ├── prp-poc-execute-parallel.md │ │ ├── prp-spec-create.md │ │ ├── prp-spec-execute.md │ │ ├── prp-story-create.md │ │ ├── prp-story-execute.md │ │ ├── prp-task-create.md │ │ ├── prp-task-execute.md │ │ ├── prp-ts-create.md │ │ ├── prp-ts-execute.md │ │ └── task-list-init.md │ ├── prp-core │ │ ├── prp-core-commit.md │ │ ├── prp-core-create.md │ │ ├── prp-core-execute.md │ │ ├── prp-core-new-branch.md │ │ ├── prp-core-pr.md │ │ ├── prp-core-review.md │ │ └── prp-core-run-all.md │ ├── rapid-development │ │ └── experimental │ │ │ ├── create-base-prp-parallel.md │ │ │ ├── create-planning-parallel.md │ │ │ ├── hackathon-prp-parallel.md │ │ │ ├── hackathon-research.md │ │ │ ├── parallel-prp-creation.md │ │ │ ├── prp-analyze-run.md │ │ │ ├── prp-validate.md │ │ │ └── user-story-rapid.md │ └── typescript │ │ ├── TS-create-base-prp.md │ │ ├── TS-execute-base-prp.md │ │ ├── TS-review-general.md │ │ └── TS-review-staged-unstaged.md └── skills │ └── prp-core-runner │ └── SKILL.md ├── .gitignore ├── .python-version ├── CLAUDE.md ├── PRPs ├── README.md ├── STORY_WORKFLOW_GUIDE.md ├── ai_docs │ ├── build_with_claude_code.md │ ├── cc_administration.md │ ├── cc_cli.md │ ├── cc_commands.md │ ├── cc_containers.md │ ├── cc_deployment.md │ ├── cc_hooks.md │ ├── cc_mcp.md │ ├── cc_monitoring.md │ ├── cc_settings.md │ ├── cc_troubleshoot.md │ ├── getting_started.md │ ├── github_actions.md │ ├── hooks.md │ └── subagents.md ├── example-from-workshop-mcp-crawl4ai-refactor-1.md ├── pydantic-ai-prp-creation-agent-parallel.md ├── scripts │ └── prp_runner.py └── templates │ ├── prp_base.md │ ├── prp_base_typescript.md │ ├── prp_planning.md │ ├── prp_poc_react.md │ ├── prp_spec.md │ ├── prp_story_task.md │ └── prp_task.md ├── README-for-DUMMIES.md ├── README.md ├── claude_md_files ├── CLAUDE-ASTRO.md ├── CLAUDE-JAVA-GRADLE.md ├── CLAUDE-JAVA-MAVEN.md ├── CLAUDE-NEXTJS-15.md ├── CLAUDE-NODE.md ├── CLAUDE-PYTHON-BASIC.md ├── CLAUDE-REACT.md └── CLAUDE-RUST.md ├── plugins └── prp-core │ ├── .claude-plugin │ └── plugin.json │ ├── README.md │ └── commands │ ├── prp-core-commit.md │ ├── prp-core-create.md │ ├── prp-core-execute.md │ ├── prp-core-new-branch.md │ ├── prp-core-pr.md │ ├── prp-core-review.md │ └── prp-core-run-all.md ├── pyproject.toml └── uv.lock /.claude-plugin/marketplace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude-plugin/marketplace.json -------------------------------------------------------------------------------- /.claude/PRPs/features/completed/add-prp-core-runner-skill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/PRPs/features/completed/add-prp-core-runner-skill.md -------------------------------------------------------------------------------- /.claude/PRPs/scripts/invoke_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/PRPs/scripts/invoke_command.py -------------------------------------------------------------------------------- /.claude/PRPs/scripts/prp_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/PRPs/scripts/prp_workflow.py -------------------------------------------------------------------------------- /.claude/agents/codebase-analyst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/agents/codebase-analyst.md -------------------------------------------------------------------------------- /.claude/agents/library-researcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/agents/library-researcher.md -------------------------------------------------------------------------------- /.claude/commands/code-quality/refactor-simple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/code-quality/refactor-simple.md -------------------------------------------------------------------------------- /.claude/commands/code-quality/review-general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/code-quality/review-general.md -------------------------------------------------------------------------------- /.claude/commands/code-quality/review-staged-unstaged.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/code-quality/review-staged-unstaged.md -------------------------------------------------------------------------------- /.claude/commands/development/create-pr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/development/create-pr.md -------------------------------------------------------------------------------- /.claude/commands/development/debug-RCA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/development/debug-RCA.md -------------------------------------------------------------------------------- /.claude/commands/development/new-dev-branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/development/new-dev-branch.md -------------------------------------------------------------------------------- /.claude/commands/development/onboarding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/development/onboarding.md -------------------------------------------------------------------------------- /.claude/commands/development/prime-core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/development/prime-core.md -------------------------------------------------------------------------------- /.claude/commands/development/smart-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/development/smart-commit.md -------------------------------------------------------------------------------- /.claude/commands/git-operations/conflict-resolver-general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/git-operations/conflict-resolver-general.md -------------------------------------------------------------------------------- /.claude/commands/git-operations/conflict-resolver-specific.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/git-operations/conflict-resolver-specific.md -------------------------------------------------------------------------------- /.claude/commands/git-operations/smart-resolver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/git-operations/smart-resolver.md -------------------------------------------------------------------------------- /.claude/commands/prp-commands/api-contract-define.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/prp-commands/api-contract-define.md -------------------------------------------------------------------------------- /.claude/commands/prp-commands/prp-base-create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/prp-commands/prp-base-create.md -------------------------------------------------------------------------------- /.claude/commands/prp-commands/prp-base-execute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/prp-commands/prp-base-execute.md -------------------------------------------------------------------------------- /.claude/commands/prp-commands/prp-planning-create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/prp-commands/prp-planning-create.md -------------------------------------------------------------------------------- /.claude/commands/prp-commands/prp-poc-create-parallel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/prp-commands/prp-poc-create-parallel.md -------------------------------------------------------------------------------- /.claude/commands/prp-commands/prp-poc-execute-parallel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/prp-commands/prp-poc-execute-parallel.md -------------------------------------------------------------------------------- /.claude/commands/prp-commands/prp-spec-create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/prp-commands/prp-spec-create.md -------------------------------------------------------------------------------- /.claude/commands/prp-commands/prp-spec-execute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/prp-commands/prp-spec-execute.md -------------------------------------------------------------------------------- /.claude/commands/prp-commands/prp-story-create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/prp-commands/prp-story-create.md -------------------------------------------------------------------------------- /.claude/commands/prp-commands/prp-story-execute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/prp-commands/prp-story-execute.md -------------------------------------------------------------------------------- /.claude/commands/prp-commands/prp-task-create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/prp-commands/prp-task-create.md -------------------------------------------------------------------------------- /.claude/commands/prp-commands/prp-task-execute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/prp-commands/prp-task-execute.md -------------------------------------------------------------------------------- /.claude/commands/prp-commands/prp-ts-create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/prp-commands/prp-ts-create.md -------------------------------------------------------------------------------- /.claude/commands/prp-commands/prp-ts-execute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/prp-commands/prp-ts-execute.md -------------------------------------------------------------------------------- /.claude/commands/prp-commands/task-list-init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/prp-commands/task-list-init.md -------------------------------------------------------------------------------- /.claude/commands/prp-core/prp-core-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/prp-core/prp-core-commit.md -------------------------------------------------------------------------------- /.claude/commands/prp-core/prp-core-create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/prp-core/prp-core-create.md -------------------------------------------------------------------------------- /.claude/commands/prp-core/prp-core-execute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/prp-core/prp-core-execute.md -------------------------------------------------------------------------------- /.claude/commands/prp-core/prp-core-new-branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/prp-core/prp-core-new-branch.md -------------------------------------------------------------------------------- /.claude/commands/prp-core/prp-core-pr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/prp-core/prp-core-pr.md -------------------------------------------------------------------------------- /.claude/commands/prp-core/prp-core-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/prp-core/prp-core-review.md -------------------------------------------------------------------------------- /.claude/commands/prp-core/prp-core-run-all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/prp-core/prp-core-run-all.md -------------------------------------------------------------------------------- /.claude/commands/rapid-development/experimental/create-base-prp-parallel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/rapid-development/experimental/create-base-prp-parallel.md -------------------------------------------------------------------------------- /.claude/commands/rapid-development/experimental/create-planning-parallel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/rapid-development/experimental/create-planning-parallel.md -------------------------------------------------------------------------------- /.claude/commands/rapid-development/experimental/hackathon-prp-parallel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/rapid-development/experimental/hackathon-prp-parallel.md -------------------------------------------------------------------------------- /.claude/commands/rapid-development/experimental/hackathon-research.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/rapid-development/experimental/hackathon-research.md -------------------------------------------------------------------------------- /.claude/commands/rapid-development/experimental/parallel-prp-creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/rapid-development/experimental/parallel-prp-creation.md -------------------------------------------------------------------------------- /.claude/commands/rapid-development/experimental/prp-analyze-run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/rapid-development/experimental/prp-analyze-run.md -------------------------------------------------------------------------------- /.claude/commands/rapid-development/experimental/prp-validate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/rapid-development/experimental/prp-validate.md -------------------------------------------------------------------------------- /.claude/commands/rapid-development/experimental/user-story-rapid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/rapid-development/experimental/user-story-rapid.md -------------------------------------------------------------------------------- /.claude/commands/typescript/TS-create-base-prp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/typescript/TS-create-base-prp.md -------------------------------------------------------------------------------- /.claude/commands/typescript/TS-execute-base-prp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/typescript/TS-execute-base-prp.md -------------------------------------------------------------------------------- /.claude/commands/typescript/TS-review-general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/typescript/TS-review-general.md -------------------------------------------------------------------------------- /.claude/commands/typescript/TS-review-staged-unstaged.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/commands/typescript/TS-review-staged-unstaged.md -------------------------------------------------------------------------------- /.claude/skills/prp-core-runner/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.claude/skills/prp-core-runner/SKILL.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /PRPs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/PRPs/README.md -------------------------------------------------------------------------------- /PRPs/STORY_WORKFLOW_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/PRPs/STORY_WORKFLOW_GUIDE.md -------------------------------------------------------------------------------- /PRPs/ai_docs/build_with_claude_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/PRPs/ai_docs/build_with_claude_code.md -------------------------------------------------------------------------------- /PRPs/ai_docs/cc_administration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/PRPs/ai_docs/cc_administration.md -------------------------------------------------------------------------------- /PRPs/ai_docs/cc_cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/PRPs/ai_docs/cc_cli.md -------------------------------------------------------------------------------- /PRPs/ai_docs/cc_commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/PRPs/ai_docs/cc_commands.md -------------------------------------------------------------------------------- /PRPs/ai_docs/cc_containers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/PRPs/ai_docs/cc_containers.md -------------------------------------------------------------------------------- /PRPs/ai_docs/cc_deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/PRPs/ai_docs/cc_deployment.md -------------------------------------------------------------------------------- /PRPs/ai_docs/cc_hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/PRPs/ai_docs/cc_hooks.md -------------------------------------------------------------------------------- /PRPs/ai_docs/cc_mcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/PRPs/ai_docs/cc_mcp.md -------------------------------------------------------------------------------- /PRPs/ai_docs/cc_monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/PRPs/ai_docs/cc_monitoring.md -------------------------------------------------------------------------------- /PRPs/ai_docs/cc_settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/PRPs/ai_docs/cc_settings.md -------------------------------------------------------------------------------- /PRPs/ai_docs/cc_troubleshoot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/PRPs/ai_docs/cc_troubleshoot.md -------------------------------------------------------------------------------- /PRPs/ai_docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/PRPs/ai_docs/getting_started.md -------------------------------------------------------------------------------- /PRPs/ai_docs/github_actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/PRPs/ai_docs/github_actions.md -------------------------------------------------------------------------------- /PRPs/ai_docs/hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/PRPs/ai_docs/hooks.md -------------------------------------------------------------------------------- /PRPs/ai_docs/subagents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/PRPs/ai_docs/subagents.md -------------------------------------------------------------------------------- /PRPs/example-from-workshop-mcp-crawl4ai-refactor-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/PRPs/example-from-workshop-mcp-crawl4ai-refactor-1.md -------------------------------------------------------------------------------- /PRPs/pydantic-ai-prp-creation-agent-parallel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/PRPs/pydantic-ai-prp-creation-agent-parallel.md -------------------------------------------------------------------------------- /PRPs/scripts/prp_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/PRPs/scripts/prp_runner.py -------------------------------------------------------------------------------- /PRPs/templates/prp_base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/PRPs/templates/prp_base.md -------------------------------------------------------------------------------- /PRPs/templates/prp_base_typescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/PRPs/templates/prp_base_typescript.md -------------------------------------------------------------------------------- /PRPs/templates/prp_planning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/PRPs/templates/prp_planning.md -------------------------------------------------------------------------------- /PRPs/templates/prp_poc_react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/PRPs/templates/prp_poc_react.md -------------------------------------------------------------------------------- /PRPs/templates/prp_spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/PRPs/templates/prp_spec.md -------------------------------------------------------------------------------- /PRPs/templates/prp_story_task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/PRPs/templates/prp_story_task.md -------------------------------------------------------------------------------- /PRPs/templates/prp_task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/PRPs/templates/prp_task.md -------------------------------------------------------------------------------- /README-for-DUMMIES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/README-for-DUMMIES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/README.md -------------------------------------------------------------------------------- /claude_md_files/CLAUDE-ASTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/claude_md_files/CLAUDE-ASTRO.md -------------------------------------------------------------------------------- /claude_md_files/CLAUDE-JAVA-GRADLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/claude_md_files/CLAUDE-JAVA-GRADLE.md -------------------------------------------------------------------------------- /claude_md_files/CLAUDE-JAVA-MAVEN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/claude_md_files/CLAUDE-JAVA-MAVEN.md -------------------------------------------------------------------------------- /claude_md_files/CLAUDE-NEXTJS-15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/claude_md_files/CLAUDE-NEXTJS-15.md -------------------------------------------------------------------------------- /claude_md_files/CLAUDE-NODE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/claude_md_files/CLAUDE-NODE.md -------------------------------------------------------------------------------- /claude_md_files/CLAUDE-PYTHON-BASIC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/claude_md_files/CLAUDE-PYTHON-BASIC.md -------------------------------------------------------------------------------- /claude_md_files/CLAUDE-REACT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/claude_md_files/CLAUDE-REACT.md -------------------------------------------------------------------------------- /claude_md_files/CLAUDE-RUST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/claude_md_files/CLAUDE-RUST.md -------------------------------------------------------------------------------- /plugins/prp-core/.claude-plugin/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/plugins/prp-core/.claude-plugin/plugin.json -------------------------------------------------------------------------------- /plugins/prp-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/plugins/prp-core/README.md -------------------------------------------------------------------------------- /plugins/prp-core/commands/prp-core-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/plugins/prp-core/commands/prp-core-commit.md -------------------------------------------------------------------------------- /plugins/prp-core/commands/prp-core-create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/plugins/prp-core/commands/prp-core-create.md -------------------------------------------------------------------------------- /plugins/prp-core/commands/prp-core-execute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/plugins/prp-core/commands/prp-core-execute.md -------------------------------------------------------------------------------- /plugins/prp-core/commands/prp-core-new-branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/plugins/prp-core/commands/prp-core-new-branch.md -------------------------------------------------------------------------------- /plugins/prp-core/commands/prp-core-pr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/plugins/prp-core/commands/prp-core-pr.md -------------------------------------------------------------------------------- /plugins/prp-core/commands/prp-core-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/plugins/prp-core/commands/prp-core-review.md -------------------------------------------------------------------------------- /plugins/prp-core/commands/prp-core-run-all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/plugins/prp-core/commands/prp-core-run-all.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/pyproject.toml -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wirasm/PRPs-agentic-eng/HEAD/uv.lock --------------------------------------------------------------------------------