@allthingsclaude/blueprints 0.4.5 → 0.4.6

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.
Files changed (38) hide show
  1. package/content/commands/a11y.md +5 -4
  2. package/content/commands/audit.md +1 -1
  3. package/content/commands/autopilot.md +1 -1
  4. package/content/commands/brainstorm.md +2 -2
  5. package/content/commands/brand.md +10 -10
  6. package/content/commands/challenge.md +1 -1
  7. package/content/commands/changelog.md +2 -2
  8. package/content/commands/cleanup.md +2 -2
  9. package/content/commands/commit.md +1 -1
  10. package/content/commands/copy.md +7 -7
  11. package/content/commands/critique.md +1 -1
  12. package/content/commands/debug.md +1 -1
  13. package/content/commands/design.md +4 -4
  14. package/content/commands/diagram.md +4 -4
  15. package/content/commands/docs.md +4 -3
  16. package/content/commands/dry.md +2 -2
  17. package/content/commands/email.md +6 -6
  18. package/content/commands/explain.md +2 -2
  19. package/content/commands/finalize.md +1 -1
  20. package/content/commands/handoff.md +1 -1
  21. package/content/commands/history.md +2 -2
  22. package/content/commands/i18n.md +4 -4
  23. package/content/commands/migrate.md +3 -3
  24. package/content/commands/og.md +8 -8
  25. package/content/commands/onboard.md +6 -5
  26. package/content/commands/pickup.md +1 -1
  27. package/content/commands/pitch.md +6 -6
  28. package/content/commands/refactor.md +1 -1
  29. package/content/commands/release.md +5 -5
  30. package/content/commands/research.md +1 -1
  31. package/content/commands/secure.md +2 -2
  32. package/content/commands/showcase.md +3 -3
  33. package/content/commands/standup.md +2 -2
  34. package/content/commands/test.md +1 -1
  35. package/content/commands/todo.md +4 -4
  36. package/content/commands/update.md +3 -3
  37. package/content/commands/verify.md +1 -1
  38. package/package.json +1 -1
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Audit your frontend for accessibility issues
3
- argument-hint: [optional: file path, component name, or WCAG level like "AA" or "AAA"]
3
+ argument-hint: optional: file path, component name, or WCAG level like "AA" or "AAA"
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -15,13 +15,14 @@ I'll scan your frontend code for accessibility issues and provide actionable fix
15
15
  **Working Directory**: !`pwd`
16
16
 
17
17
  **Project**:
18
- !`cat package.json 2>/dev/null | head -10`
18
+ !`head -10 package.json 2>/dev/null`
19
19
 
20
20
  **Frontend Files**:
21
- !`find src/ app/ pages/ components/ -name "*.tsx" -o -name "*.jsx" -o -name "*.vue" -o -name "*.svelte" -o -name "*.html" 2>/dev/null | head -25 || echo "No frontend files found in common locations"`
21
+ !`find src/ app/ pages/ components/ -name "*.tsx" -o -name "*.jsx" -o -name "*.vue" -o -name "*.svelte" -o -name "*.html" 2>/dev/null || echo "No frontend files found in common locations"`
22
22
 
23
23
  **Existing A11y Setup**:
24
- !`ls .axerc* .pa11yci* .pa11yrc* a11y.config* 2>/dev/null; cat package.json 2>/dev/null | grep -i "a11y\|axe\|pa11y\|accessibility\|jest-axe\|@axe-core\|eslint-plugin-jsx-a11y" || echo "No a11y tooling detected"`
24
+ !`ls .axerc* .pa11yci* .pa11yrc* a11y.config* 2>/dev/null || echo "No a11y config files"`
25
+ !`grep -i "a11y\|axe\|pa11y\|accessibility\|jest-axe\|@axe-core\|eslint-plugin-jsx-a11y" package.json 2>/dev/null || echo "No a11y tooling detected"`
25
26
 
26
27
  ---
27
28
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Review code changes before committing
3
- argument-hint: [optional: specific files or focus area]
3
+ argument-hint: optional: specific files or focus area
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Full autonomous development loop - from idea to committed code
3
- argument-hint: [--full] [feature description or plan name]
3
+ argument-hint: --full feature description or plan name
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Enter brainstorming mode to explore ideas without implementation
3
- argument-hint: [topic or context]
3
+ argument-hint: topic or context
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -21,7 +21,7 @@ Before brainstorming, quickly assess the current project:
21
21
  !`ls package.json tsconfig.json Cargo.toml go.mod pyproject.toml requirements.txt composer.json Gemfile pom.xml build.gradle mix.exs 2>/dev/null || echo "No recognized project files"`
22
22
 
23
23
  **Source Files**:
24
- !`find . -maxdepth 3 -type f \( -name "*.ts" -o -name "*.tsx" -o -name "*.js" -o -name "*.jsx" -o -name "*.py" -o -name "*.rs" -o -name "*.go" -o -name "*.java" -o -name "*.rb" -o -name "*.ex" -o -name "*.php" \) 2>/dev/null | head -10 | wc -l`
24
+ !`find . -maxdepth 3 -type f \( -name "*.ts" -o -name "*.tsx" -o -name "*.js" -o -name "*.jsx" -o -name "*.py" -o -name "*.rs" -o -name "*.go" -o -name "*.java" -o -name "*.rb" -o -name "*.ex" -o -name "*.php" \) 2>/dev/null`
25
25
 
26
26
  **Is this an empty/new project?** If there are fewer than 5 source files and no meaningful project configuration, this is likely a **new project**. In that case:
27
27
  - Mention to the user that this looks like a new project and brainstorming is a great starting point
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Create or document a comprehensive brand identity system
3
- argument-hint: [brand description] or leave empty for guided questionnaire
3
+ argument-hint: brand description or leave empty for guided questionnaire
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -13,29 +13,29 @@ I'll create or document a comprehensive brand identity system — colors, typogr
13
13
  **Working Directory**: !`pwd`
14
14
 
15
15
  **Existing Brand Assets**:
16
- !`ls tailwind.config.* src/app/globals.css src/styles/*.css styles/*.css public/images/*.svg public/*.svg 2>/dev/null | head -20 || echo "No brand files detected"`
16
+ !`ls tailwind.config.* src/app/globals.css src/styles/*.css styles/*.css public/images/*.svg public/*.svg 2>/dev/null || echo "No brand files detected"`
17
17
 
18
18
  **Design Directory**:
19
- !`ls design/ 2>/dev/null && echo == existing brand docs == && ls design/brand-brief.md design/brand-guide.md design/tokens.css 2>/dev/null || echo "No existing design directory"`
19
+ !`ls design/ 2>/dev/null || echo "No existing design directory"`
20
20
 
21
21
  **Previous Brand Brief**:
22
- !`cat design/brand-brief.md 2>/dev/null | head -40 || echo "No brand brief yet"`
22
+ !`head -40 design/brand-brief.md 2>/dev/null || echo "No brand brief yet"`
23
23
 
24
24
  **CSS / Tailwind Config**:
25
- !`cat tailwind.config.* 2>/dev/null | head -40 || echo "No Tailwind config"`
25
+ !`head -40 tailwind.config.* 2>/dev/null || echo "No Tailwind config"`
26
26
 
27
27
  **Font Imports**:
28
- !`grep -rE "googleapis.com/css|next/font|@import.*font|@font-face|fontFamily" tailwind.config.* src/app/layout.tsx src/app/globals.css src/styles/*.css 2>/dev/null | head -15 || echo "No font declarations found"`
28
+ !`grep -rE "googleapis.com/css|next/font|@import.*font|@font-face|fontFamily" tailwind.config.* src/app/layout.tsx src/app/globals.css src/styles/*.css 2>/dev/null || echo "No font declarations found"`
29
29
 
30
30
  **Color Definitions**:
31
- !`grep -rE "#[0-9A-Fa-f]{3,8}\b|--color-|rgba?\(|hsl" src/app/globals.css tailwind.config.* styles/*.css src/styles/*.css 2>/dev/null | head -30 || echo "No color definitions found"`
31
+ !`grep -rE "#[0-9A-Fa-f]{3,8}\b|--color-|rgba?\(|hsl" src/app/globals.css tailwind.config.* styles/*.css src/styles/*.css 2>/dev/null || echo "No color definitions found"`
32
32
 
33
33
  **Logo Files**:
34
- !`ls public/images/logo* public/logo* public/images/icon* public/*.svg src/assets/*.svg 2>/dev/null | head -10 || echo "No logo files found"`
34
+ !`ls public/images/logo* public/logo* public/images/icon* public/*.svg src/assets/*.svg 2>/dev/null || echo "No logo files found"`
35
35
 
36
36
  **README / Package Info**:
37
- !`cat README.md 2>/dev/null | head -20 || echo "No README"`
38
- !`cat package.json 2>/dev/null | head -10 || echo "No package.json"`
37
+ !`head -20 README.md 2>/dev/null || echo "No README"`
38
+ !`head -10 package.json 2>/dev/null || echo "No package.json"`
39
39
 
40
40
  ---
41
41
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Challenge Mode - Critical Thinking Assistant
3
- argument-hint: [optional: approach or decision to challenge]
3
+ argument-hint: optional: approach or decision to challenge
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Generate a changelog from git history
3
- argument-hint: [optional: version tag, date range, or "unreleased"]
3
+ argument-hint: optional: version tag, date range, or "unreleased"
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -17,7 +17,7 @@ I'll analyze your git history and generate a well-structured changelog.
17
17
  **Branch**: !`git branch --show-current 2>/dev/null || echo "Not a git repository"`
18
18
 
19
19
  **Latest Tags**:
20
- !`git tag --sort=-version:refname 2>/dev/null | head -5 || echo "No tags found"`
20
+ !`git tag --sort=-version:refname -n5 2>/dev/null || echo "No tags found"`
21
21
 
22
22
  **Recent Commits**:
23
23
  !`git log --oneline -10 2>/dev/null`
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Find and remove dead code, unused imports, and technical debt
3
- argument-hint: [optional: "imports" | "dead-code" | "types" | "todos" | focus area]
3
+ argument-hint: optional: "imports" | "dead-code" | "types" | "todos" | focus area
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -17,7 +17,7 @@ I'll scan your codebase for dead code, unused imports, and technical debt.
17
17
  **Branch**: !`git branch --show-current 2>/dev/null || echo "Not a git repository"`
18
18
 
19
19
  **Files to Analyze**:
20
- !`find . -maxdepth 5 -name "*.ts" -o -name "*.tsx" -o -name "*.js" -o -name "*.jsx" 2>/dev/null | grep -v node_modules | wc -l` source files
20
+ !`find . -maxdepth 5 -name "*.ts" -o -name "*.tsx" -o -name "*.js" -o -name "*.jsx" -not -path "*/node_modules/*" 2>/dev/null` source files
21
21
 
22
22
  ---
23
23
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Create a well-crafted git commit from your current changes
3
- argument-hint: [optional: commit message hint or scope]
3
+ argument-hint: optional: commit message hint or scope
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Write on-brand marketing copy for social media, ads, emails, and landing pages
3
- argument-hint: [copy brief] or leave empty for guided questionnaire
3
+ argument-hint: copy brief or leave empty for guided questionnaire
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -13,22 +13,22 @@ I'll write on-brand marketing copy — social captions, ad copy, email subject l
13
13
  **Working Directory**: !`pwd`
14
14
 
15
15
  **Existing Brand Brief**:
16
- !`cat design/brand-brief.md 2>/dev/null | head -40 || echo "No brand brief yet"`
16
+ !`head -40 design/brand-brief.md 2>/dev/null || echo "No brand brief yet"`
17
17
 
18
18
  **Project Identity**:
19
- !`cat README.md 2>/dev/null | head -30 || echo "No README found"`
19
+ !`head -30 README.md 2>/dev/null || echo "No README found"`
20
20
 
21
21
  **Package Description**:
22
- !`cat package.json 2>/dev/null | head -10 || echo "No package.json found"`
22
+ !`head -10 package.json 2>/dev/null || echo "No package.json found"`
23
23
 
24
24
  **Existing Copy & Messaging**:
25
- !`grep -rh 'content=\|<title>\|<meta name=.description' src/app/layout.tsx src/app/page.tsx index.html 2>/dev/null | head -10 || echo "No meta/title tags detected"`
25
+ !`grep -rh 'content=\|<title>\|<meta name=.description' src/app/layout.tsx src/app/page.tsx index.html 2>/dev/null || echo "No meta/title tags detected"`
26
26
 
27
27
  **Landing Page Copy**:
28
- !`grep -rh "<h1\|<h2\|<p class.*hero\|<p class.*subtitle\|<p class.*tagline" src/app/page.tsx src/components/Hero.tsx src/components/Landing.tsx index.html 2>/dev/null | head -15 || echo "No landing page copy detected"`
28
+ !`grep -rh "<h1\|<h2\|<p class.*hero\|<p class.*subtitle\|<p class.*tagline" src/app/page.tsx src/components/Hero.tsx src/components/Landing.tsx index.html 2>/dev/null || echo "No landing page copy detected"`
29
29
 
30
30
  **Design Directory**:
31
- !`ls design/ 2>/dev/null && echo == existing campaigns == && ls -d design/*/ 2>/dev/null || echo "No existing design directory"`
31
+ !`ls design/ 2>/dev/null || echo "No existing design directory"`
32
32
 
33
33
  ---
34
34
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Critique Mode
3
- argument-hint: [optional: code, design, or approach to critique]
3
+ argument-hint: optional: code, design, or approach to critique
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Investigate and diagnose issues with systematic analysis
3
- argument-hint: [error message, file path, or behavior description]
3
+ argument-hint: error message, file path, or behavior description
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Create on-brand design and marketing assets (social media, banners, ads)
3
- argument-hint: [design brief] or leave empty for guided questionnaire
3
+ argument-hint: design brief or leave empty for guided questionnaire
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -13,13 +13,13 @@ I'll create on-brand design and marketing assets — social media banners, ad cr
13
13
  **Working Directory**: !`pwd`
14
14
 
15
15
  **Existing Brand Assets**:
16
- !`ls tailwind.config.* src/app/globals.css src/styles/*.css public/images/*.svg 2>/dev/null | head -15 || echo "No brand files detected"`
16
+ !`ls tailwind.config.* src/app/globals.css src/styles/*.css public/images/*.svg 2>/dev/null || echo "No brand files detected"`
17
17
 
18
18
  **Design Directory**:
19
- !`ls design/ 2>/dev/null && echo == existing campaigns == && ls -d design/*/ 2>/dev/null || echo "No existing design directory"`
19
+ !`ls design/ 2>/dev/null || echo "No existing design directory"`
20
20
 
21
21
  **Previous Brand Brief**:
22
- !`cat design/brand-brief.md 2>/dev/null | head -30 || echo "No brand brief yet"`
22
+ !`head -30 design/brand-brief.md 2>/dev/null || echo "No brand brief yet"`
23
23
 
24
24
  **Image Generation APIs** (agent will check GEMINI_API_KEY and FAL_KEY availability at runtime):
25
25
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Generate Mermaid diagrams from your codebase
3
- argument-hint: [architecture | dependency | sequence | er | dataflow | component name or feature]
3
+ argument-hint: architecture | dependency | sequence | er | dataflow | component name or feature
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -15,13 +15,13 @@ I'll analyze your codebase and generate Mermaid diagrams that visualize architec
15
15
  **Working Directory**: !`pwd`
16
16
 
17
17
  **Project**:
18
- !`cat package.json 2>/dev/null | head -10 || cat Cargo.toml 2>/dev/null | head -10 || cat pyproject.toml 2>/dev/null | head -10 || cat go.mod 2>/dev/null | head -5`
18
+ !`head -10 package.json 2>/dev/null`
19
19
 
20
20
  **Structure**:
21
- !`ls -la src/ 2>/dev/null | head -20 || ls -la lib/ 2>/dev/null | head -20 || ls -la app/ 2>/dev/null | head -20 || ls -la`
21
+ !`ls -la src/ 2>/dev/null`
22
22
 
23
23
  **Existing Docs**:
24
- !`ls docs/ 2>/dev/null | head -10; ls *.md 2>/dev/null | head -5`
24
+ !`ls docs/ 2>/dev/null`
25
25
 
26
26
  ---
27
27
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Generate or update project documentation
3
- argument-hint: [readme | api | architecture | file path or component to document]
3
+ argument-hint: readme | api | architecture | file path or component to document
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -15,10 +15,11 @@ I'll analyze your codebase and generate or update documentation.
15
15
  **Working Directory**: !`pwd`
16
16
 
17
17
  **Project**:
18
- !`ls README* 2>/dev/null; ls docs/ 2>/dev/null | head -10; echo ===; cat package.json 2>/dev/null | head -5`
18
+ !`ls README* 2>/dev/null || echo "No README found"`
19
+ !`ls docs/ 2>/dev/null || echo "No docs/ directory"`
19
20
 
20
21
  **Existing Docs**:
21
- !`find . -maxdepth 3 -name "*.md" -not -path "*/node_modules/*" -not -path "*/.git/*" 2>/dev/null | head -15`
22
+ !`find . -maxdepth 3 -name "*.md" -not -path "*/node_modules/*" -not -path "*/.git/*" 2>/dev/null`
22
23
 
23
24
  ---
24
25
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Eliminate DRY violations without changing behavior
3
- argument-hint: [optional: file/folder path, "functions" | "components" | "hooks" | "types" | "constants"]
3
+ argument-hint: optional: file/folder path, "functions" | "components" | "hooks" | "types" | "constants"
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -20,7 +20,7 @@ I'll find and eliminate DRY violations across your codebase while guaranteeing i
20
20
  !`git status --short`
21
21
 
22
22
  **Files to Analyze**:
23
- !`find . -maxdepth 5 -name "*.ts" -o -name "*.tsx" -o -name "*.js" -o -name "*.jsx" 2>/dev/null | grep -v node_modules | wc -l` source files
23
+ !`find . -maxdepth 5 -name "*.ts" -o -name "*.tsx" -o -name "*.js" -o -name "*.jsx" -not -path "*/node_modules/*" 2>/dev/null` source files
24
24
 
25
25
  ---
26
26
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Create on-brand HTML email templates (newsletters, announcements, transactional)
3
- argument-hint: [email brief] or leave empty for guided questionnaire
3
+ argument-hint: email brief or leave empty for guided questionnaire
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -13,19 +13,19 @@ I'll create on-brand, email-client-compatible HTML templates — newsletters, pr
13
13
  **Working Directory**: !`pwd`
14
14
 
15
15
  **Existing Brand Assets**:
16
- !`ls tailwind.config.* src/app/globals.css src/styles/*.css public/images/*.svg 2>/dev/null | head -15 || echo "No brand files detected"`
16
+ !`ls tailwind.config.* src/app/globals.css src/styles/*.css public/images/*.svg 2>/dev/null || echo "No brand files detected"`
17
17
 
18
18
  **Design Directory**:
19
- !`ls design/ 2>/dev/null && echo == existing campaigns == && ls -d design/*/ 2>/dev/null || echo "No existing design directory"`
19
+ !`ls design/ 2>/dev/null || echo "No existing design directory"`
20
20
 
21
21
  **Previous Brand Brief**:
22
- !`cat design/brand-brief.md 2>/dev/null | head -30 || echo "No brand brief yet"`
22
+ !`head -30 design/brand-brief.md 2>/dev/null || echo "No brand brief yet"`
23
23
 
24
24
  **Existing Email Templates**:
25
- !`find . -maxdepth 4 -name "*.html" -path "*email*" -o -name "*.html" -path "*newsletter*" -o -name "*.html" -path "*template*" -path "*mail*" 2>/dev/null | head -10 || echo "No existing email templates found"`
25
+ !`find . -maxdepth 4 -name "*.html" -path "*email*" -o -name "*.html" -path "*newsletter*" -o -name "*.html" -path "*template*" -path "*mail*" 2>/dev/null || echo "No existing email templates found"`
26
26
 
27
27
  **Mail-Related Dependencies**:
28
- !`grep -E "nodemailer|sendgrid|mailgun|postmark|resend|ses|mailchimp|mjml|react-email" package.json 2>/dev/null | head -10 || echo "No mail dependencies detected"`
28
+ !`grep -E "nodemailer|sendgrid|mailgun|postmark|resend|ses|mailchimp|mjml|react-email" package.json 2>/dev/null || echo "No mail dependencies detected"`
29
29
 
30
30
  ---
31
31
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Generate detailed explanations of code, architecture, or features
3
- argument-hint: [file path, component name, feature, or concept to explain]
3
+ argument-hint: file path, component name, feature, or concept to explain
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -13,7 +13,7 @@ I'll provide a detailed, educational explanation of the code, architecture, or f
13
13
  **Working Directory**: !`pwd`
14
14
 
15
15
  **Project Structure**:
16
- !`ls -la src/ 2>/dev/null | head -15`
16
+ !`ls -la src/ 2>/dev/null`
17
17
 
18
18
  ---
19
19
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Finalize work session - update plans, commit changes with proper message
3
- argument-hint: [optional: commit message prefix or focus area]
3
+ argument-hint: optional: commit message prefix or focus area
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Generate comprehensive handoff documentation for context switching
3
- argument-hint: [optional: focus area or notes]
3
+ argument-hint: optional: focus area or notes
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -27,13 +27,13 @@ Investigating the history of: **$ARGUMENTS**
27
27
  !`git log --follow --diff-filter=A --format="%h %an (%ar): %s" -- "$ARGUMENTS" 2>/dev/null || echo "Unable to determine creation"`
28
28
 
29
29
  **Contributors**:
30
- !`git log --follow --format="%an" -- "$ARGUMENTS" 2>/dev/null | sort | uniq -c | sort -rn || echo "N/A"`
30
+ !`git log --follow --format="%an" -- "$ARGUMENTS" 2>/dev/null || echo "N/A"`
31
31
 
32
32
  **Recent Activity (last 30 days)**:
33
33
  !`git log --since="30 days ago" --follow --format="%h %s (%ar)" -- "$ARGUMENTS" 2>/dev/null || echo "No recent changes"`
34
34
 
35
35
  **Change Frequency**:
36
- !`git log --follow --oneline -- "$ARGUMENTS" 2>/dev/null | wc -l`
36
+ !`git log --follow --oneline -- "$ARGUMENTS" 2>/dev/null`
37
37
 
38
38
  ---
39
39
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Audit and set up internationalization for your project
3
- argument-hint: [optional: audit | setup | extract | add-locale <locale> | file path or component]
3
+ argument-hint: optional: audit | setup | extract | add-locale <locale> | file path or component
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -15,15 +15,15 @@ I'll audit your project's internationalization readiness, extract hardcoded stri
15
15
  **Working Directory**: !`pwd`
16
16
 
17
17
  **Project**:
18
- !`cat package.json 2>/dev/null | head -15`
18
+ !`head -15 package.json 2>/dev/null`
19
19
 
20
20
  **Existing i18n Setup**:
21
- !`cat package.json 2>/dev/null | grep -i "i18n\|intl\|locale\|next-intl\|react-intl\|react-i18next\|i18next\|vue-i18n\|@formatjs\|lingui\|messageformat\|rosetta\|typesafe-i18n\|paraglide" || echo "No i18n dependencies detected"`
21
+ !`grep -i "i18n\|intl\|locale\|next-intl\|react-intl\|react-i18next\|i18next\|vue-i18n\|@formatjs\|lingui\|messageformat\|rosetta\|typesafe-i18n\|paraglide" package.json 2>/dev/null || echo "No i18n dependencies detected"`
22
22
  !`ls -d **/locales/ **/translations/ **/i18n/ **/lang/ **/messages/ src/i18n* src/locales* public/locales* 2>/dev/null || echo "No i18n directories found"`
23
23
  !`ls i18n.config* i18next.config* next-i18next.config* lingui.config* 2>/dev/null || echo "No i18n config files found"`
24
24
 
25
25
  **Frontend Files**:
26
- !`find src/ app/ pages/ components/ -name "*.tsx" -o -name "*.jsx" -o -name "*.vue" -o -name "*.svelte" 2>/dev/null | wc -l`
26
+ !`find src/ app/ pages/ components/ -name "*.tsx" -o -name "*.jsx" -o -name "*.vue" -o -name "*.svelte" 2>/dev/null`
27
27
 
28
28
  ---
29
29
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Upgrade dependencies or migrate between framework versions
3
- argument-hint: [package@version, "all", or migration description]
3
+ argument-hint: package@version, "all", or migration description
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -20,10 +20,10 @@ I'll help you upgrade dependencies or migrate between framework versions safely.
20
20
  !`git status --short`
21
21
 
22
22
  **Current Dependencies**:
23
- !`cat package.json 2>/dev/null | head -40`
23
+ !`head -40 package.json 2>/dev/null`
24
24
 
25
25
  **Lock File**:
26
- !`ls pnpm-lock.yaml yarn.lock bun.lockb package-lock.json 2>/dev/null | head -1 || echo "No lock file found"`
26
+ !`ls pnpm-lock.yaml yarn.lock bun.lockb package-lock.json 2>/dev/null || echo "No lock file found"`
27
27
 
28
28
  ---
29
29
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Auto-generate Open Graph images for all pages in your project
3
- argument-hint: [specific page or route] or leave empty for all pages
3
+ argument-hint: specific page or route or leave empty for all pages
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -16,25 +16,25 @@ I'll generate on-brand Open Graph images for your pages — each a self-containe
16
16
  !`ls next.config.* nuxt.config.* astro.config.* remix.config.* svelte.config.* vite.config.* angular.json 2>/dev/null || echo "No framework config detected"`
17
17
 
18
18
  **App Router Pages** (Next.js):
19
- !`find src/app -name "page.tsx" -o -name "page.jsx" -o -name "page.ts" -o -name "page.js" 2>/dev/null | head -20 || echo "No App Router pages"`
19
+ !`find src/app -name "page.tsx" -o -name "page.jsx" -o -name "page.ts" -o -name "page.js" 2>/dev/null || echo "No App Router pages"`
20
20
 
21
21
  **Pages Router** (Next.js/Nuxt):
22
- !`ls src/pages/*.tsx src/pages/**/*.tsx pages/*.tsx pages/**/*.tsx src/pages/*.vue pages/*.vue 2>/dev/null | head -20 || echo "No Pages Router files"`
22
+ !`ls src/pages/*.tsx src/pages/**/*.tsx pages/*.tsx pages/**/*.tsx src/pages/*.vue pages/*.vue 2>/dev/null || echo "No Pages Router files"`
23
23
 
24
24
  **Astro Pages**:
25
- !`find src/pages -name "*.astro" -o -name "*.md" -o -name "*.mdx" 2>/dev/null | head -20 || echo "No Astro pages"`
25
+ !`find src/pages -name "*.astro" -o -name "*.md" -o -name "*.mdx" 2>/dev/null || echo "No Astro pages"`
26
26
 
27
27
  **Static HTML**:
28
- !`find . -maxdepth 3 -name "*.html" ! -path "./node_modules/*" ! -path "./design/*" ! -path "./public/og/*" ! -path "./.next/*" ! -path "./dist/*" 2>/dev/null | head -20 || echo "No static HTML files"`
28
+ !`find . -maxdepth 3 -name "*.html" ! -path "./node_modules/*" ! -path "./design/*" ! -path "./public/og/*" ! -path "./.next/*" ! -path "./dist/*" 2>/dev/null || echo "No static HTML files"`
29
29
 
30
30
  **Existing OG Images**:
31
- !`ls public/og/ design/og-* 2>/dev/null | head -10 || echo "No existing OG images"`
31
+ !`ls public/og/ design/og-* 2>/dev/null || echo "No existing OG images"`
32
32
 
33
33
  **Brand Assets**:
34
- !`cat design/brand-brief.md 2>/dev/null | head -30 || echo "No brand brief yet"`
34
+ !`head -30 design/brand-brief.md 2>/dev/null || echo "No brand brief yet"`
35
35
 
36
36
  **Metadata / SEO**:
37
- !`grep -rn "openGraph\|og:image\|og:title\|og:description\|meta.*property.*og:" src/ pages/ app/ 2>/dev/null | head -15 || echo "No existing OG meta tags found"`
37
+ !`grep -rn "openGraph\|og:image\|og:title\|og:description\|meta.*property.*og:" src/ pages/ app/ 2>/dev/null || echo "No existing OG meta tags found"`
38
38
 
39
39
  ---
40
40
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Generate a developer onboarding guide for this project
3
- argument-hint: [optional: focus area like "backend", "frontend", "api", or "contributing"]
3
+ argument-hint: optional: focus area like "backend", "frontend", "api", or "contributing"
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -15,19 +15,20 @@ I'll analyze your project and generate a comprehensive onboarding guide for new
15
15
  **Working Directory**: !`pwd`
16
16
 
17
17
  **Project**:
18
- !`cat package.json 2>/dev/null | head -15 || cat Cargo.toml 2>/dev/null | head -15 || cat pyproject.toml 2>/dev/null | head -15 || cat go.mod 2>/dev/null | head -5`
18
+ !`head -15 package.json 2>/dev/null`
19
19
 
20
20
  **Structure**:
21
21
  !`ls -la`
22
22
 
23
23
  **Git Info**:
24
- !`git log --oneline -5 2>/dev/null; echo ===; git branch -a 2>/dev/null | head -10`
24
+ !`git log --oneline -5 2>/dev/null`
25
+ !`git branch -a 2>/dev/null`
25
26
 
26
27
  **Existing Docs**:
27
- !`ls README* CONTRIBUTING* CLAUDE.md docs/ 2>/dev/null | head -10`
28
+ !`ls README* CONTRIBUTING* CLAUDE.md docs/ 2>/dev/null`
28
29
 
29
30
  **Dev Scripts**:
30
- !`cat package.json 2>/dev/null | grep -A 20 '"scripts"' | head -25`
31
+ !`grep -A 20 '"scripts"' package.json 2>/dev/null`
31
32
 
32
33
  ---
33
34
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Load handoff document and continue from previous session
3
- argument-hint: [optional: specific task or focus area]
3
+ argument-hint: optional: specific task or focus area
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Create an on-brand HTML presentation deck with speaker notes
3
- argument-hint: [pitch topic/audience] or leave empty for guided questionnaire
3
+ argument-hint: pitch topic/audience or leave empty for guided questionnaire
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -13,19 +13,19 @@ I'll create an on-brand, self-contained HTML presentation deck with keyboard nav
13
13
  **Working Directory**: !`pwd`
14
14
 
15
15
  **Existing Brand Brief**:
16
- !`cat design/brand-brief.md 2>/dev/null | head -40 || echo "No brand brief yet"`
16
+ !`head -40 design/brand-brief.md 2>/dev/null || echo "No brand brief yet"`
17
17
 
18
18
  **Project Identity**:
19
- !`cat README.md 2>/dev/null | head -30 || echo "No README found"`
19
+ !`head -30 README.md 2>/dev/null || echo "No README found"`
20
20
 
21
21
  **Package Description**:
22
- !`cat package.json 2>/dev/null | head -10 || echo "No package.json found"`
22
+ !`head -10 package.json 2>/dev/null || echo "No package.json found"`
23
23
 
24
24
  **Product Features & Stats**:
25
- !`grep -rh "<h2\|<h3\|<strong\|features\|pricing\|stats\|metric" src/app/page.tsx src/components/*.tsx README.md 2>/dev/null | head -20 || echo "No product features detected"`
25
+ !`grep -rh "<h2\|<h3\|<strong\|features\|pricing\|stats\|metric" src/app/page.tsx src/components/*.tsx README.md 2>/dev/null || echo "No product features detected"`
26
26
 
27
27
  **Design Directory**:
28
- !`ls design/ 2>/dev/null && echo == existing campaigns == && ls -d design/*/ 2>/dev/null || echo "No existing design directory"`
28
+ !`ls design/ 2>/dev/null || echo "No existing design directory"`
29
29
 
30
30
  ---
31
31
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Safely rename, extract, inline, or move code with validation
3
- argument-hint: [operation] [target] (e.g., "rename:old:new", "extract:ComponentName", "move:src:dest")
3
+ argument-hint: operation target (e.g., "rename:old:new", "extract:ComponentName", "move:src:dest")
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Create a release — version bump, changelog, tag, and publish
3
- argument-hint: [optional: major | minor | patch | version number | --dry-run]
3
+ argument-hint: optional: major | minor | patch | version number | --dry-run
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -20,16 +20,16 @@ I'll orchestrate a complete release for your project — detecting existing rele
20
20
  !`git status --short`
21
21
 
22
22
  **Current Version**:
23
- !`cat package.json 2>/dev/null | grep '"version"' | head -1 || cat Cargo.toml 2>/dev/null | grep '^version' | head -1 || cat pyproject.toml 2>/dev/null | grep '^version' | head -1 || echo "Could not detect version"`
23
+ !`grep '"version"' package.json 2>/dev/null || grep '^version' Cargo.toml 2>/dev/null || grep '^version' pyproject.toml 2>/dev/null || echo "Could not detect version"`
24
24
 
25
25
  **Latest Tags**:
26
- !`git tag --sort=-version:refname 2>/dev/null | head -5 || echo "No tags found"`
26
+ !`git tag --sort=-version:refname -n5 2>/dev/null || echo "No tags found"`
27
27
 
28
28
  **Commits Since Last Tag**:
29
- !`git log --oneline 2>/dev/null | head -15`
29
+ !`git log --oneline 2>/dev/null`
30
30
 
31
31
  **Release Scripts Detected**:
32
- !`cat package.json 2>/dev/null | grep -E '"(release|version|bump|publish|prepublish|postpublish|preversion|postversion|prepublishOnly)"' || echo "None in package.json"`
32
+ !`grep -E '"(release|version|bump|publish|prepublish|postpublish|preversion|postversion|prepublishOnly)"' package.json 2>/dev/null || echo "None in package.json"`
33
33
  !`ls .release-it.* .changeset/ .versionrc* lerna.json .releaserc* release.config.* 2>/dev/null || echo "No release tool configs found"`
34
34
  !`ls scripts/release* scripts/publish* scripts/version* Makefile 2>/dev/null || echo "No release scripts found"`
35
35
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Activate a specialized research agent (codebase/web/docs) to investigate specific topics
3
- argument-hint: [topic or question to research]
3
+ argument-hint: topic or question to research
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Run a focused security scan on your codebase
3
- argument-hint: [optional: file/folder path, or focus area like "deps", "auth", "api"]
3
+ argument-hint: optional: file/folder path, or focus area like "deps", "auth", "api"
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -20,7 +20,7 @@ I'll perform a focused security audit of your codebase, checking for vulnerabili
20
20
  !`git status --short`
21
21
 
22
22
  **Dependencies**:
23
- !`cat package.json 2>/dev/null | grep -c '"dependencies\|"devDependencies"' || echo "No package.json"`
23
+ !`grep -c '"dependencies\|"devDependencies"' package.json 2>/dev/null || echo "No package.json"`
24
24
 
25
25
  ---
26
26
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Design an award-winning landing page with animations and micro-interactions
3
- argument-hint: [product/project name or description]
3
+ argument-hint: product/project name or description
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -16,10 +16,10 @@ I'll design and build a high-end landing page with polished animations, micro-in
16
16
  !`ls package.json tsconfig.json next.config.* vite.config.* astro.config.* tailwind.config.* 2>/dev/null || echo "No recognized project files"`
17
17
 
18
18
  **Existing Pages**:
19
- !`find . -maxdepth 4 -type f \( -name "page.tsx" -o -name "page.jsx" -o -name "index.tsx" -o -name "index.jsx" -o -name "index.html" \) -not -path "*/node_modules/*" 2>/dev/null | head -10`
19
+ !`find . -maxdepth 4 -type f \( -name "page.tsx" -o -name "page.jsx" -o -name "index.tsx" -o -name "index.jsx" -o -name "index.html" \) -not -path "*/node_modules/*" 2>/dev/null`
20
20
 
21
21
  **Reference Files** (images/videos provided):
22
- !`ls {{TASKS_DIR}}/references/ 2>/dev/null | head -10 || echo "No references found"`
22
+ !`ls {{TASKS_DIR}}/references/ 2>/dev/null || echo "No references found"`
23
23
 
24
24
  ---
25
25
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Generate a standup summary from recent git activity
3
- argument-hint: [optional: timeframe like "3 days" or "this week"]
3
+ argument-hint: optional: timeframe like "3 days" or "this week"
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -17,7 +17,7 @@ Generating a standup summary from recent activity.
17
17
  **Author**: !`git config user.name 2>/dev/null || echo "Unknown"`
18
18
 
19
19
  **Commits (last 48 hours)**:
20
- !`git log --since="48 hours ago" --format="%h %an: %s (%ar)" 2>/dev/null | head -20 || echo "No recent commits"`
20
+ !`git log --since="48 hours ago" --format="%h %an: %s (%ar)" 2>/dev/null || echo "No recent commits"`
21
21
 
22
22
  **Uncommitted Changes**:
23
23
  !`git diff --stat 2>/dev/null || echo "None"`
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Run tests with intelligent analysis and fix suggestions
3
- argument-hint: [optional: file pattern, test name, or "generate" for new tests]
3
+ argument-hint: optional: file pattern, test name, or "generate" for new tests
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Scan codebase for TODO/FIXME/HACK markers and present an organized summary
3
- argument-hint: [optional: directory, file, or keyword to filter]
3
+ argument-hint: optional: directory, file, or keyword to filter
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -19,13 +19,13 @@ Scanning the codebase for code markers and annotations.
19
19
  ## Marker Scan
20
20
 
21
21
  **High Priority (FIXME, HACK, XXX)**:
22
- !`git grep -rn -E '\b(FIXME|HACK|XXX)\b' -- ':!node_modules' ':!.git' 2>/dev/null || grep -rn -E '\b(FIXME|HACK|XXX)\b' --include='*' --exclude-dir=node_modules --exclude-dir=.git . 2>/dev/null || echo "No high-priority markers found"`
22
+ !`git grep -rn -E '\b(FIXME|HACK|XXX)\b' -- ':!node_modules' ':!.git' 2>/dev/null || echo "No high-priority markers found"`
23
23
 
24
24
  **Standard (TODO, TASK, TEMP, DEPRECATED)**:
25
- !`git grep -rn -E '\b(TODO|TASK|TEMP|DEPRECATED)\b' -- ':!node_modules' ':!.git' 2>/dev/null || grep -rn -E '\b(TODO|TASK|TEMP|DEPRECATED)\b' --include='*' --exclude-dir=node_modules --exclude-dir=.git . 2>/dev/null || echo "No standard markers found"`
25
+ !`git grep -rn -E '\b(TODO|TASK|TEMP|DEPRECATED)\b' -- ':!node_modules' ':!.git' 2>/dev/null || echo "No standard markers found"`
26
26
 
27
27
  **Informational (NOTE, WARN)**:
28
- !`git grep -rn -E '\b(NOTE|WARN)\b' -- ':!node_modules' ':!.git' 2>/dev/null || grep -rn -E '\b(NOTE|WARN)\b' --include='*' --exclude-dir=node_modules --exclude-dir=.git . 2>/dev/null || echo "No informational markers found"`
28
+ !`git grep -rn -E '\b(NOTE|WARN)\b' -- ':!node_modules' ':!.git' 2>/dev/null || echo "No informational markers found"`
29
29
 
30
30
  ## User Filter
31
31
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Update CLAUDE.md and STATE.md to reflect current project state
3
- argument-hint: [optional: section to focus on]
3
+ argument-hint: optional: section to focus on
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
@@ -13,13 +13,13 @@ I'll scan the project and update CLAUDE.md and STATE.md to reflect the current s
13
13
  **Working Directory**: !`pwd`
14
14
 
15
15
  **Existing CLAUDE.md**:
16
- !`cat CLAUDE.md 2>/dev/null | head -5 || echo "No CLAUDE.md found"`
16
+ !`head -5 CLAUDE.md 2>/dev/null || echo "No CLAUDE.md found"`
17
17
 
18
18
  **Project Detection**:
19
19
  !`ls package.json tsconfig.json Cargo.toml go.mod pyproject.toml requirements.txt composer.json Gemfile pom.xml build.gradle mix.exs 2>/dev/null || echo "No recognized project files"`
20
20
 
21
21
  **Source Files**:
22
- !`find . -maxdepth 3 -type f \( -name "*.ts" -o -name "*.tsx" -o -name "*.js" -o -name "*.jsx" -o -name "*.py" -o -name "*.rs" -o -name "*.go" -o -name "*.java" -o -name "*.rb" -o -name "*.ex" -o -name "*.php" \) -not -path "*/node_modules/*" -not -path "*/.git/*" 2>/dev/null | wc -l`
22
+ !`find . -maxdepth 3 -type f \( -name "*.ts" -o -name "*.tsx" -o -name "*.js" -o -name "*.jsx" -o -name "*.py" -o -name "*.rs" -o -name "*.go" -o -name "*.java" -o -name "*.rb" -o -name "*.ex" -o -name "*.php" \) -not -path "*/node_modules/*" -not -path "*/.git/*" 2>/dev/null`
23
23
 
24
24
  ---
25
25
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Verification Mode
3
- argument-hint: [optional: approach or task to verify]
3
+ argument-hint: optional: approach or task to verify
4
4
  author: "@markoradak"
5
5
  ---
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@allthingsclaude/blueprints",
3
- "version": "0.4.5",
3
+ "version": "0.4.6",
4
4
  "description": "Claude Code commands and agents for enhanced AI-assisted development workflows",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",