Agent skill
skills_to_workflows
Sync or migrate skills from `.codex/skills/` to `.agent/workflows/`. Converts directory-based skills into flat markdown workflow files. Use when you need to update the agent's available workflows from the core skill repository.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/skills-to-workflows
SKILL.md
Skills to Workflows Sync
This workflow automates the process of converting complex skill structures into flat workflow files for the agent.
Process Overview
- Identify Sources: Check
.codex/skills/for all available skill directories. - Mapping: Each directory (e.g.,
01-step-one) corresponds to a workflow file (01-step-one.md). - Extraction: The content of
SKILL.mdinside each directory is copied to the workflow file.
CLI Execution
Run the following command in the project root to perform a full sync:
# Ensure target directory exists
mkdir -p .agent/workflows
# Sync all SKILL.md files to .agent/workflows/ as {foldername}.md
for dir in .codex/skills/*/; do
foldername=$(basename "$dir")
cp "$dir/SKILL.md" ".agent/workflows/$foldername.md"
done
Verification
After sync, verify the workflows are recognized by listing the directory:
ls -la .agent/workflows
When to Use
- After creating a new skill in
.codex/skills/. - When you want to "publish" local skills to the agentic workflow system.
- To ensure consistency between different agents that might prefer one format over the other.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?