cc-dev-template 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-dev-template",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Structured AI-assisted development framework for Claude Code",
5
5
  "bin": {
6
6
  "cc-dev-template": "./bin/install.js"
@@ -106,6 +106,21 @@ For each ADR in `relevant_adrs`:
106
106
  - ADR-005 violation: Using MD5 instead of bcrypt for passwords
107
107
  ```
108
108
 
109
+ ## Prompt Work
110
+
111
+ If your task involves creating or editing **prompts**—for sub-agents, commands, skills, Claude Agent SDK, or any other prompt artifacts—activate the **prompting skill** before proceeding with implementation.
112
+
113
+ This applies when:
114
+ - Writing or modifying agent prompt files (`.md` files that define agent behavior)
115
+ - Creating or editing slash command definitions
116
+ - Writing or updating skill definitions (`SKILL.md`)
117
+ - Crafting prompts for Claude Agent SDK usage
118
+ - Any work where you're defining instructions that Claude will follow
119
+
120
+ **How to activate**: Use the Skill tool with `skill: "prompting"` to load the prompting best practices, then apply those principles to your prompt work.
121
+
122
+ The prompting skill ensures your prompts follow established patterns: explaining WHY not just WHAT, using positive framing, being clear and direct, and providing proper context. Quality prompts are critical since they shape agent behavior across all future executions.
123
+
109
124
  ## Escalation
110
125
 
111
126
  **Stop immediately and escalate if:**