@allthingsclaude/blueprints 0.4.3 → 0.4.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.
@@ -35,7 +35,7 @@ I'll create or document a comprehensive brand identity system — colors, typogr
35
35
 
36
36
  **README / Package Info**:
37
37
  !`cat README.md 2>/dev/null | head -20 || echo "No README"`
38
- !`node -p 'var p=require("./package.json");p.name+" — "+(p.description||"no description")' 2>/dev/null || echo "No package.json"`
38
+ !`cat package.json 2>/dev/null | head -10 || echo "No package.json"`
39
39
 
40
40
  ---
41
41
 
@@ -19,7 +19,7 @@ I'll write on-brand marketing copy — social captions, ad copy, email subject l
19
19
  !`cat README.md 2>/dev/null | head -30 || echo "No README found"`
20
20
 
21
21
  **Package Description**:
22
- !`node -p 'var p=require("./package.json");[p.name,p.description,p.homepage].filter(Boolean).join(" | ")' 2>/dev/null || echo "No package.json found"`
22
+ !`cat package.json 2>/dev/null | head -10 || echo "No package.json found"`
23
23
 
24
24
  **Existing Copy & Messaging**:
25
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"`
@@ -21,9 +21,7 @@ I'll create on-brand design and marketing assets — social media banners, ad cr
21
21
  **Previous Brand Brief**:
22
22
  !`cat design/brand-brief.md 2>/dev/null | head -30 || echo "No brand brief yet"`
23
23
 
24
- **Image Generation APIs**:
25
- - GEMINI_API_KEY: !`echo ${GEMINI_API_KEY:+AVAILABLE}`
26
- - FAL_KEY: !`echo ${FAL_KEY:+AVAILABLE}`
24
+ **Image Generation APIs** (agent will check GEMINI_API_KEY and FAL_KEY availability at runtime):
27
25
 
28
26
  ---
29
27
 
@@ -14,7 +14,7 @@ Investigating the history of: **$ARGUMENTS**
14
14
 
15
15
  **Working Directory**: !`pwd`
16
16
 
17
- **File Exists**: !`test -f "$ARGUMENTS" && echo "Yes" || echo "File not found — check the path"`
17
+ **File Exists**: !`ls "$ARGUMENTS" 2>/dev/null || echo "File not found — check the path"`
18
18
 
19
19
  **File Size**: !`wc -l < "$ARGUMENTS" 2>/dev/null || echo "N/A"`
20
20
 
@@ -33,7 +33,7 @@ Investigating the history of: **$ARGUMENTS**
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
- !`echo "Total commits: $(git log --follow --oneline -- "$ARGUMENTS" 2>/dev/null | wc -l | tr -d ' ')"`
36
+ !`git log --follow --oneline -- "$ARGUMENTS" 2>/dev/null | wc -l`
37
37
 
38
38
  ---
39
39
 
@@ -8,10 +8,7 @@ author: "@markoradak"
8
8
 
9
9
  $ARGUMENTS
10
10
 
11
- ## API Keys
12
-
13
- - GEMINI_API_KEY: !`echo ${GEMINI_API_KEY:+AVAILABLE}`
14
- - FAL_KEY: !`echo ${FAL_KEY:+AVAILABLE}`
11
+ ## API Keys (agent will check GEMINI_API_KEY and FAL_KEY availability at runtime)
15
12
 
16
13
  ---
17
14
 
@@ -19,7 +19,7 @@ I'll create an on-brand, self-contained HTML presentation deck with keyboard nav
19
19
  !`cat README.md 2>/dev/null | head -30 || echo "No README found"`
20
20
 
21
21
  **Package Description**:
22
- !`node -p 'var p=require("./package.json");[p.name,p.description,p.homepage].filter(Boolean).join(" | ")' 2>/dev/null || echo "No package.json found"`
22
+ !`cat package.json 2>/dev/null | head -10 || echo "No package.json found"`
23
23
 
24
24
  **Product Features & Stats**:
25
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"`
@@ -26,7 +26,7 @@ I'll orchestrate a complete release for your project — detecting existing rele
26
26
  !`git tag --sort=-version:refname 2>/dev/null | head -5 || echo "No tags found"`
27
27
 
28
28
  **Commits Since Last Tag**:
29
- !`git log $(git describe --tags --abbrev=0 2>/dev/null)..HEAD --oneline 2>/dev/null | head -15 || git log --oneline -10 2>/dev/null`
29
+ !`git log --oneline 2>/dev/null | head -15`
30
30
 
31
31
  **Release Scripts Detected**:
32
32
  !`cat package.json 2>/dev/null | grep -E '"(release|version|bump|publish|prepublish|postpublish|preversion|postversion|prepublishOnly)"' || echo "None in package.json"`
@@ -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" --author="$(git config user.name)" --format="%h %s (%ar)" 2>/dev/null || echo "No recent commits"`
20
+ !`git log --since="48 hours ago" --format="%h %an: %s (%ar)" 2>/dev/null | head -20 || echo "No recent commits"`
21
21
 
22
22
  **Uncommitted Changes**:
23
23
  !`git diff --stat 2>/dev/null || echo "None"`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@allthingsclaude/blueprints",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "Claude Code commands and agents for enhanced AI-assisted development workflows",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",