Scaffold dir
Skill markbaindesign/bain-studio/.claude/skills/scaffold-dir
Claude Code skills and sync tooling for Asana-based studio project management.
npx -y skills add markbaindesign/bain-studio --skill scaffold-dirAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Create a new project directory and initialise it as a git repo. Standalone step — callable directly or by /commission. Args: path [name]
SKILL.md
1.7 KB, 418 tokens by cl100k_base, as published. Nobody here has run it
Scaffold Dir
Create a project directory and git repo at the given path.
Arguments: $ARGUMENTS
- First arg: absolute path for the new project directory
- Second arg (optional): project name, used in the initial commit message
Steps
1. Validate
- If the path already exists and is non-empty, stop and report: "Directory already exists and is non-empty — aborting to avoid overwriting."
- If the path already exists and is empty, continue.
- If a parent directory doesn't exist, stop: "Parent directory {parent} does not exist. Create it first."
2. Create directory
mkdir -p {path}
3. Git init
cd {path} && git init
4. Write .gitignore
Write a minimal .gitignore at the project root:
.env
.env.local
node_modules/
__pycache__/
*.pyc
.DS_Store
5. Initial commit
cd {path} && git add .gitignore && git commit -m "init: scaffold {name or basename}"
6. Shutter profile
If shutter-profile is available on PATH, create a Shutter profile for this project's QA inbox:
shutter-profile create "{name or basename}" "{path}/qa/qa-inbox"
This creates ~/.shutter/profiles/{name}.xml pointing to {path}/qa/qa-inbox, so Shutter can be launched for this project with shutter --profile='{name}'.
Skip silently if shutter-profile is not found.
7. Report
scaffold-dir: {path}
✓ directory created
✓ git init
✓ .gitignore written
✓ initial commit
✓ shutter profile '{name}' created (or "skipped — shutter-profile not found")
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.
Gives 0 of the 12 instructions most project setup skills give in 418 tokens
Counted across 999 of the 1,637 authors here whose files we hold, read 2026-08-07
- Ask one question at a timein 29 of 999, across 28 files
- Detect the package manager from lockfilesin 28 of 999, across 9 files
- Present findings to the userin 26 of 999, across 5 files
- Explore current repo statein 24 of 999, across 3 files
- Update the agent skills block in place if it existsin 24 of 999, across 3 files
- Install husky lint-staged and prettierin 23 of 999, across 4 files
- Create the lintstagedrc filein 22 of 999, across 3 files
- Commit all changed filesin 22 of 999, across 3 files
- Run lint-staged to verify it worksin 22 of 999, across 3 files
- Create the husky pre-commit filein 21 of 999, across 2 files
- Create a prettierrc file if missingin 21 of 999, across 2 files
- Initialize huskyin 21 of 999, across 2 files
Said here and by no other author read
- create a shutter profile if available
- report completion status
- validate the target path before creating
- stop if target directory is non-empty
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.