Structured 6-step procedure for improving, renovating, or rebuilding existing pipelines, individual project folders, documentation structures, or software stacks. Addressable as "pipeline optimizer" (for whole topic pipelines, e.g. a software, research, or game-dev pipeline) or "project-folder optimizer" (for individual project folders within a pipeline, e.g. a single software tool or paper project). Triggers on tasks like "improve pipeline X", "optimize the stack", "rebuild Y", "renovation", "pipeline refactoring", "clean up project folder", "improve folder structure", "unify conventions", "documentation consolidation", "integrate into existing system", or any substantial intervention in established structures. Delivers building-stock analysis, purpose clarification, ideal sketch, gap plan, empirical pain-point identification, and retests with fresh subagents. Prevents parallel standards, duplication, and pipeline breaks.
6-step renovation without incompatibilities — applicable at two scales:
Trigger name
Scope
Example
Pipeline optimizer
Whole pipelines, stacks, documentation structures
Your topic pipelines, e.g. software/, research/, games/, an agent system
Project-folder optimizer
Individual project folders within a pipeline
A software tool, a paper project, a game project
A pipeline here means a topic-oriented top-level structure in which multiple projects live under shared conventions (e.g. a software pipeline with release rules, a research pipeline with a publication procedure).
Both use the same 6-step workflow — the only difference is the scope (pipeline-wide vs. single project) and, accordingly, the depth of the building-stock survey in step A.
When this skill applies
The skill applies as soon as you are asked to improve, rebuild, or extend an existing structure — not for greenfield construction. Concrete triggers:
Pipeline level (scope: whole pipeline):
"Make pipeline X better"
"Optimize the stack"
"Renovate the software pipeline"
"Documentation consolidation in the research pipeline"
Substantial intervention in a topic pipeline, central _tools/, or system components
Project-folder level (scope: single project folder):
"Clean up / optimize project folder X"
"Improve the folder structure in Y"
"Refactor a single tool"
"Unify a paper-project setup"
"Align a game project folder with the pipeline standard"
Cross-cutting:
"Rebuild X / integrate it into existing Y"
"Refactoring", "consolidation"
"Unify conventions"
"Integrate into an existing system"
The building-stock metaphor
Renovating a house first requires knowing what it is made of (stone, wood, plastic), what it is for (mountain hut, software forge), and where it already fulfills functions. The same discipline applies to pipelines.
Anti-pattern: Using grep -l "<keyword>" to find insertion points and inserting there without knowing the file's context.
Output: Inventory note with all relevant conventions, tools, and templates at the chosen scope.
Step B — Identify the purpose
Question: What does the house exist for?
State the purpose explicitly in 1-2 sentences.
Pipeline examples:
Pipeline
Purpose
Software pipeline
Develop, test, and release desktop apps + browser tools to stores/GitHub
Research pipeline
Write scientific papers, peer-review them, publish to repositories/preprint servers
Game pipeline
Develop games and publish them on the target platform
Agent system
LLM system for multi-agent orchestration
Project-folder examples:
Project folder
Purpose
software/PlannerApp
Planning desktop app, commercial, private repo
research/CosmologyModel
Model paper series + numerical computations
games/SortingChaos
Sorting game, alpha stage, level progression
The purpose steers every intervention — measures that do not serve the purpose are dropped.
Step C — Sketch the ideal picture
Question: What would a perfect house for this purpose look like?
Sketch it from your own perspective (short, max. 10 points)
Bring in a best-practice comparison (e.g. Vercel stack for SaaS, scientific-python stack for research)
Do not descend into detail optimization — a top-level sketch is enough
Output: 5-10 points "ideal state per pipeline"
Step D — Gap analysis + plan
Four questions per pipeline:
What does the house already have? — Even if solved differently from the ideal but functionally equivalent.
Example: The ideal says "pip-licenses for third-party licenses". Reality: a custom generator script wraps it → functionally equivalent, no intervention needed.
What impedes the function? — Existing structures that cause breaks or extra effort today.
What is non-functional? — Dead code, outdated conventions, unused tools.
What would measurably improve functions? — Concrete interventions with expected benefit.
→ From this, a concrete plan:
What gets newly built?
What gets extended?
What gets demolished?
What stays unchanged (important to name!)
Output: Plan table with columns Intervention / Existing / Measure / Rationale
When unsure, walk step D through with the user again
Case study — the NOTICE.md incident
Assignment: Implement pipeline improvements across several topic pipelines (software, research, games).
Mistake: Step A skipped — only insertion points searched instead of reading the full policy files.
Consequence:NOTICE.md introduced as a "new license file" in 7 files, although THIRD_PARTY_LICENSES.txt + a custom license generator (wrapper around pip-licenses) were already established — documented in the pipeline's GitHub policy (mandatory files + license checklist). All software projects already had THIRD_PARTY files.
Detection: Only after the user asked ("I'm fairly sure we already had rights management").
Correction: NOTICE.md removed from the project template, 6 further files adjusted, the existing license generator referenced instead of pip-licenses.
Lesson: Had step A been executed in full, the conflict would have been detected before writing.
Rules of thumb
For "improve the pipeline", first read as long as you write.
No new standard without proof that no existing one exists.
Use existing tools/wrappers instead of new parallel ones.
"More of the same" is usually worse than "extend what exists".
Rolling back on conflict is always better than running two parallel standards.
Completion checklist
Before reporting a pipeline renovation as "done":
Step A: all relevant root docs read?
Step B: pipeline purpose stated in 1-2 sentences?
Step C: ideal picture sketched (5-10 points)?
Step D: gap analysis with table (what stays / what is extended / what is new / what goes)?
Step E: empirics checked (bugs, lessons, self-test, user interview)?
Plan agreed with the user?
Step F: tested with a fresh subagent — improvement measurable?
No parallel standards introduced?
On conflicts: rolled back or honestly accounted for?
Optimal project-folder structure (for the project-folder optimizer)
When the skill is applied to a single project folder, the following combined recommendation helps as an ideal reference (step C):
Anthropic standard (Claude Code)
File/folder
Function
CLAUDE.md (root)
Auto-loaded by Claude Code, project-specific instructions
.claude/settings.json
Permissions, env vars, model selection (committed)
.claude/settings.local.json
Local overrides (do NOT commit, add to .gitignore)
.claude/commands/*.md
Custom slash commands
.claude/agents/*.md
Custom subagents
.claude/skills/<name>/SKILL.md
Project skills
Your own project-docs template (recommended)
If you maintain your own project documentation template (e.g. under <your-workspace>/_templates/project-docs/), three build-out profiles pay off. Example split: MINIMAL provides the session core set with 7 root files (AGENTS.md, CLAUDE.md, README.md, START.md, STATE.md, TODO.md, DONE.md) plus _tools/. STANDARD adds CHANGELOG.md, DECISIONS.md, and PATTERNS.md. FULL expands to 14 root files and additionally adds ARCHITECTURE.md, WORKFLOWS.md, TOOLS.md, GLOSSARY.md as well as workflows/ and .github/.
→ Use such a template as the base for new projects (copy instead of creating manually).
Pipeline-specific additions (examples)
Depending on the pipeline, further mandatory files come on top — typical patterns:
Software project: LICENSE, CODE_OF_CONDUCT.md, SECURITY.md, CONTRIBUTING.md, THIRD_PARTY_LICENSES.txt (generated), pyproject.toml/requirements.txt, entry in the pipeline's central release registry. → If available: use the pipeline's cookiecutter template.
Research project: concept document, action plan, publication plan, archive/source/result/data folders (_archive/, _sources/, _results/, _data/), paper/ for LaTeX. For proof projects: a proof-note file with the proof chain and status.
Game project: project manifest and toolchain files of the engine (e.g. for Roblox/Rojo: default.project.json, rokit.toml, wally.toml, selene.toml), game design document, src/{server,client,shared}/ per engine convention.
Full detail reference
→ See references/optimal-project-structure.md in this skill folder (German). Contains:
Example settings.json (Anthropic schema)
Mandatory .gitignore entries
Anti-patterns (what does NOT belong in project folders)
Recommended workflows per pipeline type (software/research/game)
YAML header convention for documentation files
Auto-check sketch
Related skills (when to use instead of this one?)
Skill
When to use
project-onboarding
Take an EXTERNAL existing repo into your own system
Project bootstrapper (if available)
Create a NEW project in an existing pipeline (greenfield, no rebuild)
Pipeline bootstrapper (if available)
Create a COMPLETELY NEW pipeline (rare case)
System onboarding (if available)
Set up a new machine
The pipeline optimizer is responsible for renovation, not new construction or adoption. If your skill collection has a skill index, search it for matching bootstrapping skills.
Cross-references
Detail reference: references/optimal-project-structure.md (in this skill folder)
Anthropic Claude Code docs: https://docs.claude.com/en/docs/claude-code
If available: global user rules (e.g. a "renovations" section in your ~/CLAUDE.md) and pipeline-specific stack descriptions
Scope choice: pipeline vs. project folder
If it is unclear which scope is meant, clarify before step A:
Clue
Scope
"Improve the whole software pipeline"
Pipeline
"Clean up the folder of tool X"
Project folder
"Synchronize the central release registry"
Pipeline (central asset)
"Refactor the AssetBuilder in game Y"
Project folder
"Introduce a check convention pipeline-wide"
Pipeline
"Create a check file in project Z"
Project folder
At project-folder scope, additionally always briefly check the parent pipeline's conventions (step A extended) so the intervention stays compatible with the pipeline.
Changelog
1.2.0 (2026-06-13)
First publication in the skill library: personal paths, concrete pipeline/project names, and references to private skills replaced with generic examples; the procedure itself (6 steps, anti-patterns, case study, checklists) unchanged
1.1.1 (2026-06-01) and earlier
Internal versions (private skill directory, before publication)
1---2name: pipeline-optimizer-23description: Structured 6-step procedure for improving, renovating, or rebuilding existing pipelines, individual project folders, documentation structures, or software stacks. Addressable as "pipeline optimizer" (for whole topic pipelines, e.g. a software, research, or game-dev pipeline) or "project-folder optimizer" (for individual project folders within a pipeline, e.g. a single software tool or paper project). Triggers on tasks like "improve pipeline X", "optimize the stack", "rebuild Y", "renovation", "pipeline refactoring", "clean up project folder", "improve folder structure", "unify conventions", "documentation consolidation", "integrate into existing system", or any substantial intervention in established structures. Delivers building-stock analysis, purpose clarification, ideal sketch, gap plan, empirical pain-point identification, and retests with fresh subagents. Prevents parallel standards, duplication, and pipeline breaks.4---56<img src="banner.png" width="100%" alt="pipeline-optimizer banner">78> **English** — Official English version of `pipeline-optimizer`.91011# Pipeline Optimizer / Project-Folder Optimizer (English)1213**6-step renovation without incompatibilities** — applicable at two scales:1415| Trigger name | Scope | Example |16|---|---|---|17| **Pipeline optimizer** | Whole pipelines, stacks, documentation structures | Your topic pipelines, e.g. `software/`, `research/`, `games/`, an agent system |18| **Project-folder optimizer** | Individual project folders within a pipeline | A software tool, a paper project, a game project |1920A **pipeline** here means a topic-oriented top-level structure in which multiple projects live under shared conventions (e.g. a software pipeline with release rules, a research pipeline with a publication procedure).2122Both use the same 6-step workflow — the only difference is the **scope** (pipeline-wide vs. single project) and, accordingly, the depth of the building-stock survey in step A.2324## When this skill applies2526The skill applies as soon as you are asked to improve, rebuild, or extend an **existing** structure — not for greenfield construction. Concrete triggers:2728**Pipeline level** (scope: whole pipeline):29- "Make pipeline X better"30- "Optimize the stack"31- "Renovate the software pipeline"32- "Documentation consolidation in the research pipeline"33- Substantial intervention in a topic pipeline, central `_tools/`, or system components3435**Project-folder level** (scope: single project folder):36- "Clean up / optimize project folder X"37- "Improve the folder structure in Y"38- "Refactor a single tool"39- "Unify a paper-project setup"40- "Align a game project folder with the pipeline standard"4142**Cross-cutting:**43- "Rebuild X / integrate it into existing Y"44- "Refactoring", "consolidation"45- "Unify conventions"46- "Integrate into an existing system"4748## The building-stock metaphor4950Renovating a house first requires knowing **what it is made of** (stone, wood, plastic), **what it is for** (mountain hut, software forge), and **where it already fulfills functions**. The same discipline applies to pipelines.5152---5354## Procedure — 6 steps (do NOT skip, do NOT reorder)5556### Step A — Survey the building stock5758**Question:** What is the house made of?5960**Pipeline scope** (all root docs + tools + templates):61- [ ] **Read all root documents completely** (not just snippets/insertion points)62- [ ] Go through template folders (`_templates/`, `_TEMPLATES/`) and tool folders (`_tools/`)63- [ ] Policy files: e.g. GITHUB-POLICY.md, RELEASE-MANAGEMENT.md, QUALITY_RULES.md, NAMING-SYSTEM.md, publication procedures, …64- [ ] Status snapshots: e.g. PROJECT_STATUS.md, status overviews, releases.json, registry files65- [ ] Checklists: e.g. release checklists, build/PDF checklists66- [ ] Workflows: AGENTS.md, GUIDE.md, SKILL.md67- [ ] Lessons-learned files: LESSONS_LEARNED.md, MEMORY.md, loop-state files6869**Project-folder scope** (single-project substance + relevant pipeline conventions):70- [ ] **Read all markdown and control files in the project folder** (README, CHANGELOG, TASKS/TODO, DONE, CONCEPT, action plan, proof notes, …)71- [ ] **Survey the code structure:** src/, tests/, build configuration (pyproject.toml, requirements.txt, project manifests, toolchain files, …)72- [ ] **Take the parent pipeline's conventions into account** (e.g. for a software project: GitHub policy, naming system, release management, templates)73- [ ] **Scan existing tools/scripts in the project** (`_tools/`, `_scripts/`, build_*.bat, START scripts)74- [ ] **Configuration files:** `.gitignore`, LICENSE, NOTICE, SECURITY.md, CODE_OF_CONDUCT.md7576**Anti-pattern:** Using `grep -l "<keyword>"` to find insertion points and inserting there without knowing the file's context.7778**Output:** Inventory note with all relevant conventions, tools, and templates at the chosen scope.7980### Step B — Identify the purpose8182**Question:** What does the house exist for?8384State the purpose explicitly in 1-2 sentences.8586**Pipeline examples:**8788| Pipeline | Purpose |89|---|---|90| Software pipeline | Develop, test, and release desktop apps + browser tools to stores/GitHub |91| Research pipeline | Write scientific papers, peer-review them, publish to repositories/preprint servers |92| Game pipeline | Develop games and publish them on the target platform |93| Agent system | LLM system for multi-agent orchestration |9495**Project-folder examples:**9697| Project folder | Purpose |98|---|---|99| `software/PlannerApp` | Planning desktop app, commercial, private repo |100| `research/CosmologyModel` | Model paper series + numerical computations |101| `games/SortingChaos` | Sorting game, alpha stage, level progression |102103The purpose **steers every intervention** — measures that do not serve the purpose are dropped.104105### Step C — Sketch the ideal picture106107**Question:** What would a perfect house for this purpose look like?108109- Sketch it from your own perspective (short, max. 10 points)110- Bring in a best-practice comparison (e.g. Vercel stack for SaaS, scientific-python stack for research)111- Do not descend into detail optimization — a top-level sketch is enough112113**Output:** 5-10 points "ideal state per pipeline"114115### Step D — Gap analysis + plan116117**Four questions per pipeline:**1181191. **What does the house already have?** — Even if solved differently from the ideal but **functionally equivalent**.120 *Example:* The ideal says "pip-licenses for third-party licenses". Reality: a custom generator script wraps it → functionally equivalent, no intervention needed.1211222. **What impedes the function?** — Existing structures that cause breaks or extra effort today.1231243. **What is non-functional?** — Dead code, outdated conventions, unused tools.1251264. **What would measurably improve functions?** — Concrete interventions with expected benefit.127128→ From this, a **concrete plan**:129- What gets **newly built**?130- What gets **extended**?131- What gets **demolished**?132- What stays **unchanged** (important to name!)133134**Output:** Plan table with columns *Intervention* / *Existing* / *Measure* / *Rationale*135136### Step E — Work empirically137138Do not only plan top-down — collect pain points:139140- [ ] **Known bugs**: issue tracker, TASKS/TODO/DONE files141- [ ] **Error history**: lessons-learned files, bugfix logs, check registries142- [ ] **Automation breaks**: "What do I always have to do manually?"143- [ ] **User interview**: ask specifically — pain points, wishes, workarounds144- [ ] **Self-test**: walk through the pipeline (create a new project, run a build, simulate a release) — where does it break?145146The empirically found pain points **prioritize the plan** from step D.147148### Step F — Retests after implementation149150- [ ] Commission **fresh subagents** (unburdened by the renovation context) to walk through the changed workflow151- [ ] **Measurable before/after values**: setup time, error rate, number of manual steps, build time152- [ ] **Anti-regression check**: do existing workflows still work after the change?153- [ ] If there is **no measurable improvement** or a regression: **roll back** the renovation or readjust154155## Anti-patterns (forbidden)156157| Anti-pattern | Damage | Antidote |158|---|---|---|159| Searching insertion points instead of reading docs | Parallel standards | Step A in full |160| Transferring "best practice from X" 1:1 | Incompatibility | Step D compares functionally |161| Creating a new file without checking conventions | Duplication (e.g. NOTICE.md ↔ THIRD_PARTY_LICENSES.txt) | Step A + step D |162| Planning top-down without empirics | Solution misses the pain point | Step E before finalizing the plan |163| Not testing your own change | Undetected regression | Step F with a fresh agent |164| "Clarify later" with unclear status | User discovers the conflict afterwards | When unsure, walk step D through with the user again |165166## Case study — the NOTICE.md incident167168**Assignment:** Implement pipeline improvements across several topic pipelines (software, research, games).169170**Mistake:** Step A skipped — only insertion points searched instead of reading the full policy files.171172**Consequence:** `NOTICE.md` introduced as a "new license file" in 7 files, although `THIRD_PARTY_LICENSES.txt` + a custom license generator (wrapper around `pip-licenses`) were already established — documented in the pipeline's GitHub policy (mandatory files + license checklist). All software projects already had THIRD_PARTY files.173174**Detection:** Only after the user asked ("I'm fairly sure we already had rights management").175176**Correction:** NOTICE.md removed from the project template, 6 further files adjusted, the existing license generator referenced instead of `pip-licenses`.177178**Lesson:** Had step A been executed in full, the conflict would have been detected before writing.179180## Rules of thumb1811821. **For "improve the pipeline", first read as long as you write.**1832. **No new standard without proof that no existing one exists.**1843. **Use existing tools/wrappers instead of new parallel ones.**1854. **"More of the same" is usually worse than "extend what exists".**1865. **Rolling back on conflict** is always better than running two parallel standards.187188## Completion checklist189190Before reporting a pipeline renovation as "done":191192- [ ] Step A: all relevant root docs read?193- [ ] Step B: pipeline purpose stated in 1-2 sentences?194- [ ] Step C: ideal picture sketched (5-10 points)?195- [ ] Step D: gap analysis with table (what stays / what is extended / what is new / what goes)?196- [ ] Step E: empirics checked (bugs, lessons, self-test, user interview)?197- [ ] Plan agreed with the user?198- [ ] Step F: tested with a fresh subagent — improvement measurable?199- [ ] No parallel standards introduced?200- [ ] On conflicts: rolled back or honestly accounted for?201202## Optimal project-folder structure (for the project-folder optimizer)203204When the skill is applied to **a single project folder**, the following combined recommendation helps as an ideal reference (step C):205206### Anthropic standard (Claude Code)207208| File/folder | Function |209|---|---|210| `CLAUDE.md` (root) | Auto-loaded by Claude Code, project-specific instructions |211| `.claude/settings.json` | Permissions, env vars, model selection (committed) |212| `.claude/settings.local.json` | Local overrides (do NOT commit, add to `.gitignore`) |213| `.claude/commands/*.md` | Custom slash commands |214| `.claude/agents/*.md` | Custom subagents |215| `.claude/skills/<name>/SKILL.md` | Project skills |216217### Your own project-docs template (recommended)218219If you maintain your own project documentation template (e.g. under `<your-workspace>/_templates/project-docs/`), **three build-out profiles** pay off. Example split: **MINIMAL** provides the session core set with 7 root files (`AGENTS.md`, `CLAUDE.md`, `README.md`, `START.md`, `STATE.md`, `TODO.md`, `DONE.md`) plus `_tools/`. **STANDARD** adds `CHANGELOG.md`, `DECISIONS.md`, and `PATTERNS.md`. **FULL** expands to 14 root files and additionally adds `ARCHITECTURE.md`, `WORKFLOWS.md`, `TOOLS.md`, `GLOSSARY.md` as well as `workflows/` and `.github/`.220221→ **Use such a template as the base for new projects** (copy instead of creating manually).222223### Pipeline-specific additions (examples)224225Depending on the pipeline, further mandatory files come on top — typical patterns:226227- **Software project:** LICENSE, CODE_OF_CONDUCT.md, SECURITY.md, CONTRIBUTING.md, THIRD_PARTY_LICENSES.txt (generated), pyproject.toml/requirements.txt, entry in the pipeline's central release registry. → If available: use the pipeline's cookiecutter template.228- **Research project:** concept document, action plan, publication plan, archive/source/result/data folders (`_archive/`, `_sources/`, `_results/`, `_data/`), `paper/` for LaTeX. For proof projects: a proof-note file with the proof chain and status.229- **Game project:** project manifest and toolchain files of the engine (e.g. for Roblox/Rojo: default.project.json, rokit.toml, wally.toml, selene.toml), game design document, `src/{server,client,shared}/` per engine convention.230231### Full detail reference232233→ See **`references/optimal-project-structure.md`** in this skill folder (German). Contains:234- Example `settings.json` (Anthropic schema)235- Mandatory `.gitignore` entries236- Anti-patterns (what does NOT belong in project folders)237- Recommended workflows per pipeline type (software/research/game)238- YAML header convention for documentation files239- Auto-check sketch240241## Related skills (when to use instead of this one?)242243| Skill | When to use |244|---|---|245| **`project-onboarding`** | Take an EXTERNAL existing repo into your own system |246| Project bootstrapper (if available) | Create a NEW project in an existing pipeline (greenfield, no rebuild) |247| Pipeline bootstrapper (if available) | Create a COMPLETELY NEW pipeline (rare case) |248| System onboarding (if available) | Set up a new machine |249250The **pipeline optimizer** is responsible for **renovation**, not new construction or adoption. If your skill collection has a skill index, search it for matching bootstrapping skills.251252## Cross-references253254- Detail reference: `references/optimal-project-structure.md` (in this skill folder)255- Anthropic Claude Code docs: `https://docs.claude.com/en/docs/claude-code`256- If available: global user rules (e.g. a "renovations" section in your `~/CLAUDE.md`) and pipeline-specific stack descriptions257258## Scope choice: pipeline vs. project folder259260If it is unclear which scope is meant, **clarify before step A**:261262| Clue | Scope |263|---|---|264| "Improve the whole software pipeline" | Pipeline |265| "Clean up the folder of tool X" | Project folder |266| "Synchronize the central release registry" | Pipeline (central asset) |267| "Refactor the AssetBuilder in game Y" | Project folder |268| "Introduce a check convention pipeline-wide" | Pipeline |269| "Create a check file in project Z" | Project folder |270271At **project-folder scope**, additionally always briefly check the parent pipeline's conventions (step A extended) so the intervention stays compatible with the pipeline.272273---274275## Changelog276277### 1.2.0 (2026-06-13)278- First publication in the skill library: personal paths, concrete pipeline/project names, and references to private skills replaced with generic examples; the procedure itself (6 steps, anti-patterns, case study, checklists) unchanged279280### 1.1.1 (2026-06-01) and earlier281- Internal versions (private skill directory, before publication)
Run npx skillmds@latest add ellmos-ai/pipeline-optimizer-2 in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
Structured 6-step procedure for improving, renovating, or rebuilding existing pipelines, individual project folders, documentation structures, or software stacks. Addressable as "pipeline optimizer" (for whole topic pipelines, e.g. a software, research, or game-dev pipeline) or "project-folder optimizer" (for individual project folders within a pipeline, e.g. a single software tool or paper project). Triggers on tasks like "improve pipeline X", "optimize the stack", "rebuild Y", "renovation", "pipeline refactoring", "clean up project folder", "improve folder structure", "unify conventions", "documentation consolidation", "integrate into existing system", or any substantial intervention in established structures. Delivers building-stock analysis, purpose clarification, ideal sketch, gap plan, empirical pain-point identification, and retests with fresh subagents. Prevents parallel standards, duplication, and pipeline breaks. It is listed under DevOps & Infra on SkillMD.
This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
ellmos-ai (@ellmos-ai) published this skill. Their other Agent Skills are listed on their SkillMD profile.