You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add ./create installer to symlink skills into ~/.claude/skills
A plain `git clone` into ~/.claude/skills/creativestack produces a
nested structure that Claude Code does not discover, since skills must
live at ~/.claude/skills/<name>/SKILL.md rather than one level deeper.
Add a `create` script that symlinks each skills/<name>/SKILL.md into
~/.claude/skills/<name>/SKILL.md and each agents/<name>.md into
~/.claude/agents/<name>.md, so all 29 skills and 4 workflow agents
appear flat. Same pattern gstack uses. Symlinking SKILL.md (not the
whole directory) keeps bundled references/ resolving correctly because
paths resolve relative to the symlink target's real location.
The installer is idempotent (safe to re-run after `git pull`) and
`--uninstall` only removes symlinks that point back into the repo.
Update README install, update, and uninstall sections accordingly.
Named `create` rather than `setup` to avoid confusion with `/setup-cs`.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* Ignore local .claude/ settings directory
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* Ignore .cursor/ and .env files
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* Rename /setup-cs to /setup-brain
The previous name was picked to avoid colliding with the generic
/setup command used by other skill stacks, but it was terse and
unmemorable. /setup-brain ties directly to the product's central
metaphor — every other skill reads from and writes to "the Brain"
(the Context Vault at ~/.creativestack/), so naming the onboarding
skill after the thing it creates is self-documenting.
Also avoids confusion with the repo's new ./create installer, where
the prior pairing of ./setup (script) and /setup-cs (skill) would
have been needlessly similar if the installer had been called setup.
- Rename _build/templates/setup-cs → setup-brain
- Rename skills/setup-cs → setup-brain (regenerated from template)
- Replace all /setup-cs references across templates, shared content,
README, CLAUDE.md, CHANGELOG, scripts/check-brain.sh, and create
- Rebuild all skills to propagate the rename
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ The format is based on Keep a Changelog, and this project adheres to Semantic Ve
7
7
## [Unreleased]
8
8
9
9
### Changed
10
-
- Converted from Claude Code plugin to flat skill stack. Skills now invoked as `/skill-name` instead of `/creativestack:skill-name`. The `setup` skill was renamed to `setup-cs` to avoid collision with other stacks.
10
+
- Converted from Claude Code plugin to flat skill stack. Skills now invoked as `/skill-name` instead of `/creativestack:skill-name`. The `setup` skill was renamed to `setup-brain` to avoid collision with other stacks.
11
11
- Removed `.claude-plugin/` manifest and `hooks/` directory (plugin-only).
12
12
-`scripts/check-brain.sh` self-locates instead of relying on `$CLAUDE_PLUGIN_ROOT`; install manually as a SessionStart hook via `~/.claude/settings.json` if desired.
Copy file name to clipboardExpand all lines: CLAUDE.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ AI skill suite for creative professionals. 29 skills across 10 categories, plus
4
4
5
5
## Project structure
6
6
7
-
This is a flat Claude Code skill stack installed at `~/.claude/skills/creativestack`. Skills are invoked flat as `/skill-name` (the parent directory is just a grouping — it does not create a namespace). The `setup` skill is named `setup-cs` to avoid collision with other stacks.
7
+
This is a flat Claude Code skill stack installed at `~/.claude/skills/creativestack`. Skills are invoked flat as `/skill-name` (the parent directory is just a grouping — it does not create a namespace). The `setup` skill is named `setup-brain` to avoid collision with other stacks.
8
8
9
9
- Skills live in `skills/*/SKILL.md` (generated — do not edit directly)
10
10
- Source templates live in `_build/templates/*/SKILL.md.tmpl`
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@ cd ~/.claude/skills/creativestack
42
42
43
43
`./create` symlinks each skill's `SKILL.md` into `~/.claude/skills/<name>/SKILL.md` and each workflow agent into `~/.claude/agents/<name>.md`, so Claude Code discovers them as flat top-level entries. Restart Claude Code and all 29 skills and 4 agents are available — invoked flat as `/creative-brief`, `/meeting-notes`, `/competitor-audit`, and so on.
44
44
45
-
The one skill with a non-obvious name is `/setup-cs` (renamed from `/setup` to avoid colliding with other skill stacks). Everything else matches its directory name.
45
+
The one skill with a non-obvious name is `/setup-brain` (renamed from `/setup` to avoid colliding with other skill stacks). Everything else matches its directory name.
46
46
47
47
### Updates
48
48
@@ -83,10 +83,10 @@ Skip this and everything still works — each skill does its own brain-freshness
83
83
**1. Set up your brain (5 minutes - optional but transformative)**
84
84
85
85
```
86
-
/setup-cs
86
+
/setup-brain
87
87
```
88
88
89
-
This is an onboarding flow, not an installer — the skills are already installed by the `git clone`. `/setup-cs` walks you through who you are, your team, your tone of voice, and your standard methodology, and creates your Context Vault at `~/.creativestack/`. Every other skill reads from this vault and gets sharper because of it.
89
+
This is an onboarding flow, not an installer — the skills are already installed by the `git clone`. `/setup-brain` walks you through who you are, your team, your tone of voice, and your standard methodology, and creates your Context Vault at `~/.creativestack/`. Every other skill reads from this vault and gets sharper because of it.
90
90
91
91
You can skip this entirely and use any skill immediately — they'll work, just generically.
92
92
@@ -123,7 +123,7 @@ Every CreativeStack skill reads from and (with permission) writes to `~/.creativ
123
123
124
124
### Foundation files
125
125
126
-
Created by `/setup-cs` - the baseline:
126
+
Created by `/setup-brain` - the baseline:
127
127
128
128
| File | What it holds |
129
129
|---|---|
@@ -225,7 +225,7 @@ These all live in the brain precisely so you don't have to touch the skill templ
225
225
226
226
| Skill | What it does |
227
227
|---|---|
228
-
|`/setup-cs`| Initialise or refresh your brain - profile, tone of voice, team, clients, methodology |
228
+
|`/setup-brain`| Initialise or refresh your brain - profile, tone of voice, team, clients, methodology |
229
229
|`/update-voice`| Refine your tone-of-voice guidelines with examples and do/don't rules |
Copy file name to clipboardExpand all lines: _build/templates/ai-audit/SKILL.md.tmpl
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
name: ai-audit
3
-
description: AI readiness audit for creative professionals — four modes. Snapshot (the default — 10-minute self-assessment producing maturity scores across 5 sharpened categories, top 3 opportunities, 3-5 curated quick wins mapped to real CreativeStack skills, protected zone scoring, ROI framing in saved hours/revenue, Slack summary, discipline-aware questions, AI-advanced user branching). Leadership Pack (restructures the same data for a CEO/board audience with benchmark comparison, executive one-pager, and risk/opportunity framing so the user can take it to leadership to justify budget or hiring). Team Workshop (longer intake from multiple team member perspectives, surfaces disagreements as a distinct output, produces a workshop-ready slide outline plus the bringing-your-team-along change management plan with team anxieties, verbatim framings, protected-zone statement, 30-60-90 day plan, and handling-the-skeptic guidance). Deep Audit (includes prior-audit delta tracking, workflow walkthrough, tool stack review against tools.md). Uses practitioner-view industry benchmarks segmented by discipline and team size so users can answer "3/5 — is that good?". Writes audits to the brain as dated artefacts so repeat runs show measurable progress. Opt-in writes to learnings.md § AI maturity and tools.md. Every opportunity is mapped to a specific CreativeStack skill from a curated library, never invented. Use when a creative reaches for "where does AI fit in my practice", "I need to present AI strategy to my CEO", "I'm losing pitches to AI-native competitors", "which CreativeStack skills matter most for me", or "our team is nervous about AI and I need to lead on this". Also use as the natural second skill after /setup-cs.
3
+
description: AI readiness audit for creative professionals — four modes. Snapshot (the default — 10-minute self-assessment producing maturity scores across 5 sharpened categories, top 3 opportunities, 3-5 curated quick wins mapped to real CreativeStack skills, protected zone scoring, ROI framing in saved hours/revenue, Slack summary, discipline-aware questions, AI-advanced user branching). Leadership Pack (restructures the same data for a CEO/board audience with benchmark comparison, executive one-pager, and risk/opportunity framing so the user can take it to leadership to justify budget or hiring). Team Workshop (longer intake from multiple team member perspectives, surfaces disagreements as a distinct output, produces a workshop-ready slide outline plus the bringing-your-team-along change management plan with team anxieties, verbatim framings, protected-zone statement, 30-60-90 day plan, and handling-the-skeptic guidance). Deep Audit (includes prior-audit delta tracking, workflow walkthrough, tool stack review against tools.md). Uses practitioner-view industry benchmarks segmented by discipline and team size so users can answer "3/5 — is that good?". Writes audits to the brain as dated artefacts so repeat runs show measurable progress. Opt-in writes to learnings.md § AI maturity and tools.md. Every opportunity is mapped to a specific CreativeStack skill from a curated library, never invented. Use when a creative reaches for "where does AI fit in my practice", "I need to present AI strategy to my CEO", "I'm losing pitches to AI-native competitors", "which CreativeStack skills matter most for me", or "our team is nervous about AI and I need to lead on this". Also use as the natural second skill after /setup-brain.
4
4
---
5
5
6
6
{{PREAMBLE}}
@@ -139,7 +139,7 @@ point. But if any of these ran earlier, pull in:
139
139
140
140
| Skill run earlier | What to use |
141
141
|---|---|
142
-
|`/setup-cs`| Skip the type/discipline/size questions |
142
+
|`/setup-brain`| Skip the type/discipline/size questions |
143
143
|`/project-profitability`| Skip commercials intake; use the data |
144
144
|`/timesheet-summary`| Skip bottleneck question; use the findings |
145
145
|`/resource-conflict`| Skip team capacity questions |
@@ -166,7 +166,7 @@ Report brain depth:
166
166
Or thin:
167
167
168
168
> "Brain depth: Minimal — no brain configured. I'll run the audit
169
-
> with neutral language and recommend `/setup-cs` at
169
+
> with neutral language and recommend `/setup-brain` at
170
170
> the end so the next audit compounds."
171
171
172
172
### Step 4: Intake
@@ -376,7 +376,7 @@ Offer **at most one** brain enrichment or next step. Pick the most
376
376
valuable:
377
377
378
378
- **No brain configured** → "The biggest lift you can give this
379
-
skill is configuring `/setup-cs` first. Takes 5
379
+
skill is configuring `/setup-brain` first. Takes 5
380
380
minutes and every future audit will be dramatically sharper."
381
381
- **Prior audit exists and delta is positive** → "You moved from
382
382
{X} to {Y} overall — measurable progress. This is exactly the
@@ -701,7 +701,7 @@ time.
701
701
702
702
- **No brain at all** → use neutral language ("your work", "your
703
703
clients"), skip type-specific adaptations, endwith a strong
704
-
nudge to `/setup-cs` for next time.
704
+
nudge to `/setup-brain` for next time.
705
705
- **Brain exists but very thin** (profile only) → run the audit
706
706
but note reduced depth in the output header.
707
707
- **User is AI-advanced** → branch per Step 5. Never patronise.
@@ -733,15 +733,15 @@ time.
733
733
734
734
### Upstream (what feeds ai-audit)
735
735
736
-
- **No brain** → "`/setup-cs` first — takes 5 minutes and every future audit will be sharper."
736
+
- **No brain** → "`/setup-brain` first — takes 5 minutes and every future audit will be sharper."
737
737
- **No tone of voice** → "Consider `/update-voice` before the next audit so the output matches your voice."
738
738
- **Running as a follow-up to setup** → natural flow, no nudge needed.
739
739
740
740
### Downstream (what ai-audit triggers)
741
741
742
742
Based on the audit's findings, suggest 1-2 of:
743
743
744
-
- **Lowest category = Knowledge & IP** → "Start with `/case-study` and `/setup-cs` — institutional memory is the single highest-leverage move."
744
+
- **Lowest category = Knowledge & IP** → "Start with `/case-study` and `/setup-brain` — institutional memory is the single highest-leverage move."
745
745
- **Lowest category = Ops & Admin** → "Run `/sow-generator` or `/timesheet-summary` this week — fastest wins, lowest risk."
746
746
- **Lowest category = Creative Workflow** → "Run `/brief-sharpener` on your next incoming brief to feel the difference immediately."
747
747
- **Lowest category = Client Comms** → "Run `/status-update` this week — 5-minute drafts your clients will notice."
Copy file name to clipboardExpand all lines: _build/templates/ai-audit/references/quick-wins.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -260,7 +260,7 @@ Each win has this schema:
260
260
-**What it looks like:** Configure your CreativeStack Brain — profile, team, tone of voice, clients, and tools — so every skill produces personalised output
0 commit comments