agentsclimarketplace

Scaffold dir

Skill markbaindesign/bain-studio/.claude/skills/scaffold-dir

Create a new project directory and initialise it as a git repo. Standalone step — callable directly or by /commission. Args: path [name]From its SKILL.md

Install
npx -y skills add markbaindesign/bain-studio --skill scaffold-dir

Assembled 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.

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.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.