feat(profile): add full profile for end-to-end MVP via /init-project

Superset of web-full + dev + audit + plan tools — covers brainstorm →
design → architecture review → scaffold → implement → ship → audit
pipeline needed by /init-project to produce a real MVP in one session.

Also renames cmd_current "no-profile" sentinel from "full" to "none"
to avoid collision with the new profile name.

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Bastien Chanot 2026-05-18 20:50:13 +02:00
parent 59ff561c55
commit 5da97d10f6
3 changed files with 86 additions and 1 deletions

View File

@ -418,7 +418,7 @@ cmd_current() {
disabled_count=$(find "$DISABLED_DIR" -maxdepth 1 -name 'gstack__*' 2>/dev/null | wc -l | tr -d ' ')
fi
if [ "$disabled_count" -eq 0 ]; then
echo "full (all gstack skills enabled — no profile set)"
echo "none (all gstack skills enabled — no profile set)"
return 0
fi
# Pick the profile with the highest "available" ratio. An item counts as

84
lib/profiles/full.profile Normal file
View File

@ -0,0 +1,84 @@
# DESC: Maximum mode — web-full + plan + dev for end-to-end MVP via /init-project
# Activate when: scaffolding new project with /init-project and need
# brainstorm → design → architecture review → scaffold → implement → ship → audit
# pipeline available in one session. Superset of web-full + dev.
# === Brainstorm + plan-mode reviews ==================================
office-hours
plan-ceo-review
plan-eng-review
plan-design-review
plan-devex-review
autoplan
# === Design pipeline =================================================
design-shotgun
design-review
design-consultation
design-html
# === Browser + dogfooding ============================================
browse
open-gstack-browser
setup-browser-cookies
# === Code work — implementation ======================================
feat personal
ship-feature personal
hotfix personal
bugfix personal
investigate
refactor personal
code-clean personal
commit-change personal
# === Ship + review + land ============================================
ship
review
checkpoint
land-and-deploy
setup-deploy
# === Second opinion ==================================================
codex
# === SEO / GEO / standards / security ================================
seo personal
geo personal
validate personal
harden personal
analyze personal
cso
# === Perf + canary + QA ==============================================
health
benchmark
canary
qa
qa-only
# === Docs ============================================================
doc personal
document-release
# === Session hygiene + memory ========================================
close personal
prune-memory personal
status personal
learn
retro
careful
freeze
unfreeze
guard
# === External + plugin + MCP =========================================
emil-design-eng external
ui-ux-pro-max plugin@ui-ux-pro-max-skill
pr-review-toolkit plugin@claude-code-plugins
magic mcp
# === CLIs (advisory) =================================================
ctx7 cli
graphify cli
gsd cli

View File

@ -34,6 +34,7 @@ carrying every gstack + personal skill in every session.
| `web` | Public website work — frontend + content + light dev |
| `seo` | SEO + GEO + W3C audit — search/AI indexability + standards |
| `web-full` | Production website end-to-end — `web` + `seo` combined |
| `full` | Maximum — web-full + plan + dev for `/init-project` MVP pipeline |
| `backend` | Backend / API / system dev — no design, no SEO |
| `design` | Visual QA, design systems, mockups, polish |
| `dev` | Daily code work — features, fixes, refactor, ship (any stack) |