amcs-{SKILL_NAME}-{ACTION}

Generate a deterministic AMCS skill template with Pydantic validation and 10-run determinism tests.

1|Updated Nov 11, 2025
One-click install
npx skills add https://github.com/miethe/MeatyMusic --skill amcs-skill-name-action
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: amcs-{SKILL_NAME}-{ACTION}
Source: https://github.com/miethe/MeatyMusic/tree/main/.claude/skills/amcs-template
Command: npx skills add https://github.com/miethe/MeatyMusic --skill amcs-skill-name-action

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This template provides a standardized blueprint to create deterministic, well-documented AMCS workflow skills. It includes SKILL.md, implementation.py, test_skill.py, README, ARCHITECTURE.md, CHECKLIST.md, TEMPLATE_SUMMARY.md, and an examples directory, enabling teams to spin up new skills with consistent contracts and determinism guarantees.

Core Features & Use Cases

  • Standardized contracts: YAML frontmatter-driven inputs/outputs, deterministic behavior
  • Full template suite: All skeletons and tests required to launch a new skill in under 15 minutes
  • Onboarding & reproducibility: Seed-based determinism, hashing, event emission patterns

Quick Start

  1. Copy template: cp -r .claude/skills/amcs-template .claude/skills/workflow/{skill_name}
  2. Replace placeholders across files
  3. Implement the skill using the skeletons
  4. Run determinism tests

Frequently Asked Questions about amcs-{SKILL_NAME}-{ACTION}

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a deterministic workflow skill with reproducible results?

Deterministic workflow skills enforce seed-based randomness, low LLM temperature, and content-hash provenance to guarantee identical outputs across runs. This template provides standardized YAML contracts, Pydantic validation, and a 10-run determinism test suite so you can spin up reproducible skills in under 15 minutes with guaranteed observability.

What's included in the AMCS skill template for new workflow implementations?

The template includes SKILL.md, implementation.py, test_skill.py, README, ARCHITECTURE.md, CHECKLIST.md, TEMPLATE_SUMMARY.md, and examples directory. Each file provides skeleton code and documentation to enforce consistent contracts, seed-based determinism, automatic event emission, and Pydantic validation across PLAN, STYLE, LYRICS, PRODUCER, COMPOSE, VALIDATE, FIX, and REVIEW workflow skills.

How do I verify that my workflow skill behaves deterministically?

Run the included determinism test suite, which executes your skill 10 times with fixed seeds and validates that outputs match exactly. The template enforces low LLM temperature and content-hash provenance logging so you can audit reproducibility, detect non-deterministic behavior, and ensure testability across all eight AMCS workflow stages.

Can I use this template for all AMCS workflow skills?

Yes. The template targets all eight AMCS workflow skills—PLAN, STYLE, LYRICS, PRODUCER, COMPOSE, VALIDATE, FIX, and REVIEW—with standardized determinism contracts, event emission patterns, and validation rules. Copy the template, replace placeholders, implement your skill logic, and run determinism tests to ensure consistency.

What does the template enforce to ensure skill quality and observability?

The template enforces seed-based randomness control, low LLM temperature settings, Pydantic validation for inputs and outputs, content-hash provenance tracking, automatic event emission for debugging, and a 10-run determinism test. Together, these mechanisms guarantee reproducibility, testability, and full observability into skill execution and state changes.

How quickly can I launch a new workflow skill using this template?

Under 15 minutes. Copy the template directory, replace placeholders across SKILL.md, implementation.py, and test files with your skill name and logic, implement your core functionality in the provided skeletons, run the determinism test suite, and you have a production-ready, deterministic workflow skill with full documentation.