add SKILL

This commit is contained in:
olekhondera
2026-02-14 07:38:50 +02:00
parent 327fa78399
commit 5b28ea675d
58 changed files with 1380 additions and 956 deletions

View File

@@ -119,6 +119,9 @@ ls -la agents/
```
your-project/
├── .github/ # GitHub templates
│ ├── ISSUE_TEMPLATE/ # Issue templates (bug, feature)
│ └── PULL_REQUEST_TEMPLATE.md # PR template
├── docs/ # Complete documentation
│ ├── archetypes.md # Product archetypes & optional modules
│ ├── project-overview.md # Project overview template
@@ -126,20 +129,27 @@ your-project/
│ ├── content-structure.md # Content/page structure
│ ├── dev-setup.md # Development setup guide
│ ├── adr/ # Architecture Decision Records
│ │ ── README.md # ADR guidelines
│ │ ── README.md # ADR guidelines
│ │ └── 0000-template.md # ADR template
│ ├── frontend/ # Frontend documentation
│ │ ├── overview.md # Frontend overview
│ │ ├── architecture.md # Feature-first architecture
│ │ ├── ui-ux-guidelines.md # UX/UI best practices
│ │ ├── internationalization.md# i18n setup
│ │ └── seo-performance.md # SEO & performance
── backend/ # Backend documentation
├── overview.md # Backend overview
├── architecture.md # Modular monolith architecture
├── api-design.md # API design principles
├── security.md # Security patterns
── payment-flow.md # Payment integration
└── events-webhooks.md # Events & webhooks
── backend/ # Backend documentation
├── overview.md # Backend overview
├── architecture.md # Modular monolith architecture
├── api-design.md # API design principles
├── security.md # Security patterns
── payment-flow.md # Payment integration
├── llm/ # AI/LLM system documentation
│ │ ├── prompting.md # Prompt structure & versioning
│ │ ├── evals.md # Evaluation strategy & datasets
│ │ ├── safety.md # Safety, privacy, injection defense
│ │ ├── caching-costs.md # Token caching & budget optimization
│ │ └── rag-embeddings.md # RAG design & evaluation
│ └── examples/ # Filled-in examples
│ └── RECOMMENDATIONS-example.md
├── agents/ # AI agent profiles
│ ├── frontend-architect.md # Frontend agent profile
│ ├── backend-architect.md # Backend agent profile
@@ -147,9 +157,17 @@ your-project/
│ ├── test-engineer.md # Testing agent profile
│ ├── code-reviewer.md # Code review agent profile
│ └── prompt-engineer.md # Prompt engineering agent
├── apps/ # Application code (Phase 2+)
│ ├── web/ # Frontend app (Next.js)
│ └── api/ # Backend API (Node.js)
├── packages/ # Shared packages (if monorepo)
│ └── shared/ # Types, utils, API client
├── .editorconfig # Editor formatting standards
├── .env.example # Environment variables template
├── package.json # Project metadata & engines
├── DOCS.md # Documentation index
├── RULES.md # Project rules & agent protocol
├── RECOMMENDATIONS.md # Best practices
├── RECOMMENDATIONS.md # Project-specific decisions
└── README.md # This file
```
@@ -172,7 +190,6 @@ your-project/
- **[Frontend Overview](./docs/frontend/overview.md)** - Frontend stack overview
- **[Architecture](./docs/frontend/architecture.md)** - Feature-first architecture pattern
- **[UI/UX Guidelines](./docs/frontend/ui-ux-guidelines.md)** - Design system principles
- **[Internationalization](./docs/frontend/internationalization.md)** - i18n setup
- **[SEO & Performance](./docs/frontend/seo-performance.md)** - Optimization strategies
**Backend:**
@@ -181,7 +198,6 @@ your-project/
- **[API Design](./docs/backend/api-design.md)** - RESTful/GraphQL best practices
- **[Security](./docs/backend/security.md)** - OWASP Top 10, auth patterns
- **[Payment Flow](./docs/backend/payment-flow.md)** - Provider-agnostic payment design
- **[Events & Webhooks](./docs/backend/events-webhooks.md)** - Event-driven architecture
**AI Agents:**
- **[RULES.md](./RULES.md)** - Agent selection protocol and project rules
@@ -463,6 +479,4 @@ Inspired by best practices from Next.js, T3 Stack, and enterprise SaaS architect
**Status:** Phase 0 🚀 Template Ready - **Ready for Customization**
**Documentation:** 📚 Complete (20+ guides) | **AI Agents:** 🤖 6 specialized profiles
**Architecture:** ✅ Frontend (Feature-first) + Backend (Modular Monolith)
**Security:** ✅ OWASP Top 10 patterns | **Deployment:** ✅ Docker + CI/CD templates
**Last Updated:** 2025-12-17
**Security:** ✅ OWASP Top 10 patterns | **Deployment:** ✅ Docker + CI/CD templates