Skills Overview
OpenLogos ships with 13 AI Skills — structured Markdown instruction files (SKILL.md) that guide AI coding tools through each phase of the development lifecycle. Skills are deployed automatically during openlogos init and synchronized via openlogos sync.
How Skills Work
Section titled “How Skills Work”Each Skill is a self-contained instruction set stored in skills/<skill-name>/SKILL.md. When an AI coding tool encounters a task matching a Skill’s trigger conditions, it reads and follows the instructions to produce consistent, high-quality outputs.
Skills are organized to follow the OpenLogos three-layer progression model (WHY → WHAT → HOW):
Phase 1 — WHY (Requirements)
Section titled “Phase 1 — WHY (Requirements)”| Skill | Purpose | Trigger |
|---|---|---|
project-init | Initialize project structure and configuration | New project setup or openlogos init |
prd-writer | Write scenario-driven requirements with GIVEN/WHEN/THEN criteria | Requirements analysis phase |
Phase 2 — WHAT (Product Design)
Section titled “Phase 2 — WHAT (Product Design)”| Skill | Purpose | Trigger |
|---|---|---|
product-designer | Create interaction specs and prototypes adapted to product type | Requirements exist, design needed |
Phase 3 — HOW (Technical Implementation)
Section titled “Phase 3 — HOW (Technical Implementation)”| Skill | Purpose | Trigger |
|---|---|---|
architecture-designer | Design system architecture and select technology stack | Product design complete, Step 0 |
scenario-architect | Expand scenarios into technical sequence diagrams | Architecture complete, Step 1 |
api-designer | Design OpenAPI specs derived from sequence diagrams | Sequence diagrams complete, Step 2 |
db-designer | Derive database DDL from API specifications | API specs complete, Step 2 |
test-writer | Design unit test and scenario test cases | Specs complete, Step 3a (all projects) |
test-orchestrator | Design API orchestration test scenarios | Test cases complete, Step 3b (API projects only) |
code-implementor | Generate business code and test code with spec fidelity | Test design complete, Step 4 |
code-reviewer | Review code against the full specification chain | After code generation, Step 4+ |
Cross-Phase (Delta Workflow)
Section titled “Cross-Phase (Delta Workflow)”| Skill | Purpose | Trigger |
|---|---|---|
change-writer | Write change proposals with impact analysis | Any iteration during active lifecycle |
merge-executor | Merge delta files into main documents | After openlogos merge <slug> |
Skill File Locations
Section titled “Skill File Locations”After openlogos init, Skills are deployed to platform-specific locations:
| AI Tool | Skill Location |
|---|---|
| Claude Code | logos/skills/ (native plugin) |
| OpenCode | logos/skills/ (hooks integration) |
| Cursor | .cursor/rules/ (rule files) |
Run openlogos sync to re-deploy Skills after updates.