From tac
Guides creation of meta-prompt templates encoding engineering workflows into reusable units for slash commands, plans (chores/bugs/features), and team best practices.
How this skill is triggered — by the user, by Claude, or both
Slash command
/tac:template-engineeringThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Guide for creating meta-prompt templates - prompts that build prompts.
Guide for creating meta-prompt templates - prompts that build prompts.
Every effective template has five sections:
Clear description at the top:
# [Work Type] Planning
Create a new plan in specs/*.md to resolve the [Work Type] using
the exact specified markdown Plan Format.
Guidance for the agent:
## Instructions
- You are writing a plan, not implementing
- Use your reasoning model: THINK HARD about the plan
- Focus on files in the Relevant Files section
- Include validation commands that verify completion
- Fill in every section of the Plan Format
Guide context loading:
## Relevant Files
Focus on the following files:
- README.md (project context)
- src/** (source code)
- tests/** (test patterns)
- docs/** (documentation)
Template with placeholders:
## Plan Format
# [WorkType]: <name>
## Description
<what needs to be done>
## Relevant Files
<files to modify>
## Step by Step Tasks
<numbered actionable tasks>
## Validation Commands
<commands proving completion>
## Notes
<edge cases and considerations>
Accept user input:
## [WorkType]
$ARGUMENTS
What class of problems does this template solve?
What sections does this work type need?
| Work Type | Essential Sections |
|---|---|
| Chore | Description, Files, Tasks, Validation |
| Bug | Problem, Solution, Reproduce, Root Cause, Tasks, Validation |
| Feature | User Story, Implementation Plan, Testing, Acceptance |
| Refactor | Before/After, Migration, Rollback |
Guide the agent's reasoning:
Limit scope to improve quality:
Validate your template:
Before deploying a template:
$ARGUMENTS correctlyUse your reasoning model: THINK HARD about the plan
and the steps to accomplish this work.
Create a new plan in specs/*.md using the following naming:
specs/[worktype]-[descriptive-name].md
The Validation Commands section is REQUIRED. Every plan must
include commands that prove the work is complete.
Bad: **/* (everything)
Good: src/auth/**, tests/auth/** (focused)
Bad: No way to verify completion Good: Specific test and lint commands
Bad: "Make a good plan" Good: "Focus on error handling edge cases, include rollback steps"
Bad: Plan written somewhere undefined
Good: specs/[worktype]-[name].md pattern
Date: 2025-12-26 Model: claude-opus-4-5-20251101
npx claudepluginhub melodic-software/claude-code-plugins --plugin tacCreates Level 6 meta-prompts that generate standardized Claude Code prompts with documentation, variables, workflow, and output format. Use for prompt libraries, generators, or scaffolding.
Lists, views, executes, and customizes .flow workflow templates from project, global, and built-in locations for TDD, debugging, UI refinement, and other automation scenarios.
Creates structured, reusable prompt templates for reliable LLM outputs in production systems using chain-of-thought and few-shot examples.