all-for-claudecode 2.2.1 → 2.4.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/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/MIGRATION.md +24 -0
- package/README.md +43 -3
- package/agents/afc-appsec-expert.md +132 -0
- package/agents/afc-architect.md +5 -0
- package/agents/afc-backend-expert.md +107 -0
- package/agents/afc-design-expert.md +109 -0
- package/agents/afc-infra-expert.md +109 -0
- package/agents/afc-legal-expert.md +127 -0
- package/agents/afc-marketing-expert.md +109 -0
- package/agents/afc-pm-expert.md +108 -0
- package/agents/afc-security.md +6 -0
- package/agents/afc-tech-advisor.md +159 -0
- package/commands/analyze.md +53 -75
- package/commands/auto.md +27 -10
- package/commands/consult.md +160 -0
- package/commands/doctor.md +16 -2
- package/commands/implement.md +6 -2
- package/commands/init.md +15 -2
- package/commands/launch.md +1 -1
- package/commands/plan.md +4 -4
- package/commands/resume.md +3 -1
- package/commands/review.md +1 -1
- package/commands/spec.md +1 -1
- package/commands/tasks.md +2 -2
- package/commands/validate.md +125 -0
- package/docs/domain-adapters/ecommerce.md +47 -0
- package/docs/domain-adapters/fintech.md +45 -0
- package/docs/domain-adapters/healthcare.md +57 -0
- package/docs/expert-protocol.md +148 -0
- package/docs/phase-gate-protocol.md +1 -1
- package/hooks/hooks.json +10 -0
- package/package.json +1 -1
- package/scripts/afc-consistency-check.sh +1 -1
- package/scripts/afc-pipeline-manage.sh +1 -0
- package/scripts/afc-spec-guard.sh +78 -0
- package/scripts/afc-state.sh +23 -1
- package/scripts/afc-task-completed-gate.sh +7 -1
- package/scripts/afc-user-prompt-submit.sh +27 -1
- package/templates/project-profile.template.md +43 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Project Profile
|
|
2
|
+
|
|
3
|
+
> Shared context for expert consultation agents. Auto-generated on first consultation.
|
|
4
|
+
> Review and adjust as your project evolves.
|
|
5
|
+
|
|
6
|
+
## Stack
|
|
7
|
+
|
|
8
|
+
- **Language**: (e.g., TypeScript, Python, Go)
|
|
9
|
+
- **Framework**: (e.g., Next.js 14 App Router, FastAPI, Express)
|
|
10
|
+
- **Package Manager**: (e.g., pnpm, npm, yarn)
|
|
11
|
+
- **Database**: (e.g., PostgreSQL + Prisma, MongoDB, SQLite)
|
|
12
|
+
- **Hosting**: (e.g., Vercel, AWS, self-hosted)
|
|
13
|
+
|
|
14
|
+
## Architecture
|
|
15
|
+
|
|
16
|
+
- **Pattern**: (e.g., FSD, Clean Architecture, Layered, Monolith)
|
|
17
|
+
- **Key conventions**: (e.g., feature-based folders, barrel exports)
|
|
18
|
+
|
|
19
|
+
## Team
|
|
20
|
+
|
|
21
|
+
- **Size**: (e.g., solo, 2-3, 5-10, 10+)
|
|
22
|
+
- **Roles**: (e.g., fullstack solo, frontend + backend, cross-functional)
|
|
23
|
+
|
|
24
|
+
## Scale
|
|
25
|
+
|
|
26
|
+
- **Stage**: (e.g., prototype, MVP, growth, production)
|
|
27
|
+
- **Users**: (e.g., internal only, ~100 DAU, ~10K DAU, ~100K+ DAU)
|
|
28
|
+
- **Traffic pattern**: (e.g., steady, bursty, event-driven)
|
|
29
|
+
|
|
30
|
+
## Domain
|
|
31
|
+
|
|
32
|
+
- **Industry**: (e.g., fintech, ecommerce, healthcare, saas, general)
|
|
33
|
+
- **Compliance**: (e.g., none, GDPR, HIPAA, PCI-DSS, SOC2)
|
|
34
|
+
|
|
35
|
+
## Constraints
|
|
36
|
+
|
|
37
|
+
- **Budget**: (e.g., free tier only, moderate, enterprise)
|
|
38
|
+
- **Timeline**: (e.g., hackathon, 1-2 weeks, ongoing)
|
|
39
|
+
- **Priority**: (e.g., speed to market, reliability, scalability)
|
|
40
|
+
|
|
41
|
+
## Known Pain Points
|
|
42
|
+
|
|
43
|
+
- (e.g., slow build times, complex state management, no CI/CD yet)
|