Agent Skill
2/7/2026

cortex-skill-writer

Generate Claude Skills using Cortex Architecture pattern. Factors skills into Orchestrator (manifest), Protocols (logic), and Standards (presentation) for attention isolation and modularity. Use when creating new Claude Skills or refactoring monolithic skill.md files.

A
adamsonwalter
0GitHub Stars
1Views
npx skills add adamsonwalter/cortex-skill-writer

SKILL.md

Namecortex-skill-writer
DescriptionGenerate Claude Skills using Cortex Architecture pattern. Factors skills into Orchestrator (manifest), Protocols (logic), and Standards (presentation) for attention isolation and modularity. Use when creating new Claude Skills or refactoring monolithic skill.md files.

Cortex Skill Writer

A Claude SKILL for creating other Claude Skills using the Cortex Architecture pattern.

What is Cortex Architecture?

Cortex Architecture factors Skills into modular layers for attention isolation:

skill.md (Orchestrator)     ← Identity, routing (~75 lines)
    └── protocols/*.md      ← Logic workflows
    └── standards/*.md      ← Output formatting
    └── ontology/           ← Domain data

Why Use It?

ProblemSolution
Model distracted by formatting while calculatingLoad standards only during reporting
Giant skill.md hard to maintainModular files, single responsibility
Can't swap output formatsReplace standards file without touching logic

Usage

Invoke this skill when you want to:

  • Create a new Claude Skill from scratch
  • Refactor a monolithic skill.md into Cortex pattern
  • Generate boilerplate for skill components

Files

FilePurposeLines
skill.mdOrchestrator manifest92
protocols/skill_creation.md6-phase creation workflow175
standards/skill_format.mdYAML & Markdown conventions120
templates/skill_manifest.mdBoilerplate for skill.md62
templates/protocol.mdBoilerplate for protocols78
templates/standards.mdBoilerplate for standards58

Example

See the ECIS-7 Maturity Analyst skill in /ecis-maturity-consultant/.ecis-analyst/ for a real-world implementation of Cortex Architecture.

Quick Start

I want to create a Claude Skill for [domain].

Please use the Cortex Skill Writer to generate:
1. A skill.md manifest
2. Protocols for [workflow_1], [workflow_2]
3. Standards for [output_type]

Version: 1.0.0
Author: Built with Cortex Architecture

Skills Info
Original Name:cortex-skill-writerAuthor:adamsonwalter