Skip to content

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.

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):

SkillPurposeTrigger
project-initInitialize project structure and configurationNew project setup or openlogos init
prd-writerWrite scenario-driven requirements with GIVEN/WHEN/THEN criteriaRequirements analysis phase
SkillPurposeTrigger
product-designerCreate interaction specs and prototypes adapted to product typeRequirements exist, design needed

Phase 3 — HOW (Technical Implementation)

Section titled “Phase 3 — HOW (Technical Implementation)”
SkillPurposeTrigger
architecture-designerDesign system architecture and select technology stackProduct design complete, Step 0
scenario-architectExpand scenarios into technical sequence diagramsArchitecture complete, Step 1
api-designerDesign OpenAPI specs derived from sequence diagramsSequence diagrams complete, Step 2
db-designerDerive database DDL from API specificationsAPI specs complete, Step 2
test-writerDesign unit test and scenario test casesSpecs complete, Step 3a (all projects)
test-orchestratorDesign API orchestration test scenariosTest cases complete, Step 3b (API projects only)
code-implementorGenerate business code and test code with spec fidelityTest design complete, Step 4
code-reviewerReview code against the full specification chainAfter code generation, Step 4+
SkillPurposeTrigger
change-writerWrite change proposals with impact analysisAny iteration during active lifecycle
merge-executorMerge delta files into main documentsAfter openlogos merge <slug>

After openlogos init, Skills are deployed to platform-specific locations:

AI ToolSkill Location
Claude Codelogos/skills/ (native plugin)
OpenCodelogos/skills/ (hooks integration)
Cursor.cursor/rules/ (rule files)

Run openlogos sync to re-deploy Skills after updates.