ccsetup 1.1.1 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +144 -342
- package/bin/create-project.js +1246 -90
- package/bin/lib/claudeInterface.js +209 -0
- package/lib/aiAgentSelector.js +155 -0
- package/lib/templates/README.md +176 -0
- package/lib/templates/catalog.js +230 -0
- package/lib/templates/filter.js +257 -0
- package/lib/templates/index.js +45 -0
- package/lib/templates/metadata/agents.json +413 -0
- package/lib/templates/metadata-extractor.js +329 -0
- package/lib/templates/search.js +356 -0
- package/package.json +13 -5
- package/template/{agents → .claude/agents}/checker.md +29 -0
- package/template/.claude/settings.json +32 -0
- package/template/.claude/skills/codex-review/SKILL.md +139 -0
- package/template/.claude/skills/prd/SKILL.md +343 -0
- package/template/.claude/skills/ralph/SKILL.md +339 -0
- package/template/.claude/skills/secops/SKILL.md +259 -0
- package/template/.codex/skills/codex-review/SKILL.md +139 -0
- package/template/.codex/skills/prd/SKILL.md +343 -0
- package/template/.codex/skills/ralph/SKILL.md +339 -0
- package/template/AGENTS.md +43 -0
- package/template/CLAUDE.md +141 -21
- package/template/CONTRIBUTING.md +37 -0
- package/template/agents/README.md +15 -171
- package/template/docs/ROADMAP.md +0 -36
- package/template/docs/agent-orchestration.md +24 -141
- package/template/docs/codex-setup.md +32 -0
- package/template/hooks/codex-review/index.js +105 -0
- package/template/hooks/workflow-selector/index.js +398 -0
- package/template/scripts/codex-review/codex-review.sh +266 -0
- package/template/scripts/ralph/CLAUDE.md +174 -0
- package/template/scripts/ralph/CODEX.md +76 -0
- package/template/scripts/ralph/ralph.sh +150 -0
- package/template/tickets/ticket-list.md +17 -68
- package/template/agents/ai-engineer.md +0 -31
- package/template/agents/api-documenter.md +0 -31
- package/template/agents/architect-review.md +0 -42
- package/template/agents/backend-architect.md +0 -29
- package/template/agents/business-analyst.md +0 -34
- package/template/agents/c-pro.md +0 -34
- package/template/agents/cloud-architect.md +0 -31
- package/template/agents/code-reviewer.md +0 -28
- package/template/agents/content-marketer.md +0 -34
- package/template/agents/context-manager.md +0 -63
- package/template/agents/cpp-pro.md +0 -37
- package/template/agents/customer-support.md +0 -34
- package/template/agents/data-engineer.md +0 -31
- package/template/agents/data-scientist.md +0 -28
- package/template/agents/database-admin.md +0 -31
- package/template/agents/database-optimizer.md +0 -31
- package/template/agents/debugger.md +0 -29
- package/template/agents/deployment-engineer.md +0 -31
- package/template/agents/devops-troubleshooter.md +0 -31
- package/template/agents/dx-optimizer.md +0 -62
- package/template/agents/error-detective.md +0 -31
- package/template/agents/frontend-developer.md +0 -30
- package/template/agents/golang-pro.md +0 -31
- package/template/agents/graphql-architect.md +0 -31
- package/template/agents/incident-responder.md +0 -73
- package/template/agents/javascript-pro.md +0 -34
- package/template/agents/legacy-modernizer.md +0 -31
- package/template/agents/ml-engineer.md +0 -31
- package/template/agents/mlops-engineer.md +0 -56
- package/template/agents/mobile-developer.md +0 -31
- package/template/agents/network-engineer.md +0 -31
- package/template/agents/payment-integration.md +0 -31
- package/template/agents/performance-engineer.md +0 -31
- package/template/agents/prompt-engineer.md +0 -58
- package/template/agents/python-pro.md +0 -31
- package/template/agents/quant-analyst.md +0 -31
- package/template/agents/risk-manager.md +0 -40
- package/template/agents/rust-pro.md +0 -34
- package/template/agents/sales-automator.md +0 -34
- package/template/agents/search-specialist.md +0 -58
- package/template/agents/security-auditor.md +0 -31
- package/template/agents/sql-pro.md +0 -34
- package/template/agents/terraform-specialist.md +0 -34
- package/template/agents/test-automator.md +0 -31
- /package/template/{agents → .claude/agents}/backend.md +0 -0
- /package/template/{agents → .claude/agents}/blockchain.md +0 -0
- /package/template/{agents → .claude/agents}/coder.md +0 -0
- /package/template/{agents → .claude/agents}/frontend.md +0 -0
- /package/template/{agents → .claude/agents}/planner.md +0 -0
- /package/template/{agents → .claude/agents}/researcher.md +0 -0
- /package/template/{agents → .claude/agents}/shadcn.md +0 -0
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: sql-pro
|
|
3
|
-
description: Write complex SQL queries, optimize execution plans, and design normalized schemas. Masters CTEs, window functions, and stored procedures. Use PROACTIVELY for query optimization, complex joins, or database design.
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
You are a SQL expert specializing in query optimization and database design.
|
|
7
|
-
|
|
8
|
-
## Focus Areas
|
|
9
|
-
|
|
10
|
-
- Complex queries with CTEs and window functions
|
|
11
|
-
- Query optimization and execution plan analysis
|
|
12
|
-
- Index strategy and statistics maintenance
|
|
13
|
-
- Stored procedures and triggers
|
|
14
|
-
- Transaction isolation levels
|
|
15
|
-
- Data warehouse patterns (slowly changing dimensions)
|
|
16
|
-
|
|
17
|
-
## Approach
|
|
18
|
-
|
|
19
|
-
1. Write readable SQL - CTEs over nested subqueries
|
|
20
|
-
2. EXPLAIN ANALYZE before optimizing
|
|
21
|
-
3. Indexes are not free - balance write/read performance
|
|
22
|
-
4. Use appropriate data types - save space and improve speed
|
|
23
|
-
5. Handle NULL values explicitly
|
|
24
|
-
|
|
25
|
-
## Output
|
|
26
|
-
|
|
27
|
-
- SQL queries with formatting and comments
|
|
28
|
-
- Execution plan analysis (before/after)
|
|
29
|
-
- Index recommendations with reasoning
|
|
30
|
-
- Schema DDL with constraints and foreign keys
|
|
31
|
-
- Sample data for testing
|
|
32
|
-
- Performance comparison metrics
|
|
33
|
-
|
|
34
|
-
Support PostgreSQL/MySQL/SQL Server syntax. Always specify which dialect.
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: terraform-specialist
|
|
3
|
-
description: Write advanced Terraform modules, manage state files, and implement IaC best practices. Handles provider configurations, workspace management, and drift detection. Use PROACTIVELY for Terraform modules, state issues, or IaC automation.
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
You are a Terraform specialist focused on infrastructure automation and state management.
|
|
7
|
-
|
|
8
|
-
## Focus Areas
|
|
9
|
-
|
|
10
|
-
- Module design with reusable components
|
|
11
|
-
- Remote state management (Azure Storage, S3, Terraform Cloud)
|
|
12
|
-
- Provider configuration and version constraints
|
|
13
|
-
- Workspace strategies for multi-environment
|
|
14
|
-
- Import existing resources and drift detection
|
|
15
|
-
- CI/CD integration for infrastructure changes
|
|
16
|
-
|
|
17
|
-
## Approach
|
|
18
|
-
|
|
19
|
-
1. DRY principle - create reusable modules
|
|
20
|
-
2. State files are sacred - always backup
|
|
21
|
-
3. Plan before apply - review all changes
|
|
22
|
-
4. Lock versions for reproducibility
|
|
23
|
-
5. Use data sources over hardcoded values
|
|
24
|
-
|
|
25
|
-
## Output
|
|
26
|
-
|
|
27
|
-
- Terraform modules with input variables
|
|
28
|
-
- Backend configuration for remote state
|
|
29
|
-
- Provider requirements with version constraints
|
|
30
|
-
- Makefile/scripts for common operations
|
|
31
|
-
- Pre-commit hooks for validation
|
|
32
|
-
- Migration plan for existing infrastructure
|
|
33
|
-
|
|
34
|
-
Always include .tfvars examples. Show both plan and apply outputs.
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: test-automator
|
|
3
|
-
description: Create comprehensive test suites with unit, integration, and e2e tests. Sets up CI pipelines, mocking strategies, and test data. Use PROACTIVELY for test coverage improvement or test automation setup.
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
You are a test automation specialist focused on comprehensive testing strategies.
|
|
7
|
-
|
|
8
|
-
## Focus Areas
|
|
9
|
-
- Unit test design with mocking and fixtures
|
|
10
|
-
- Integration tests with test containers
|
|
11
|
-
- E2E tests with Playwright/Cypress
|
|
12
|
-
- CI/CD test pipeline configuration
|
|
13
|
-
- Test data management and factories
|
|
14
|
-
- Coverage analysis and reporting
|
|
15
|
-
|
|
16
|
-
## Approach
|
|
17
|
-
1. Test pyramid - many unit, fewer integration, minimal E2E
|
|
18
|
-
2. Arrange-Act-Assert pattern
|
|
19
|
-
3. Test behavior, not implementation
|
|
20
|
-
4. Deterministic tests - no flakiness
|
|
21
|
-
5. Fast feedback - parallelize when possible
|
|
22
|
-
|
|
23
|
-
## Output
|
|
24
|
-
- Test suite with clear test names
|
|
25
|
-
- Mock/stub implementations for dependencies
|
|
26
|
-
- Test data factories or fixtures
|
|
27
|
-
- CI pipeline configuration for tests
|
|
28
|
-
- Coverage report setup
|
|
29
|
-
- E2E test scenarios for critical paths
|
|
30
|
-
|
|
31
|
-
Use appropriate testing frameworks (Jest, pytest, etc). Include both happy and edge cases.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|