Back to list
orangekame3

scaffold

by orangekame3

0🍴 0📅 Jan 23, 2026

SKILL.md


name: scaffold description: Scaffold a new project in a subdirectory user-invocable: true argument-hint: allowed-tools: Bash, Write, Read

Scaffold New Project

Create a new project in a subdirectory.

Usage

/scaffold <language> <project-name>

Supported Languages

Python

mkdir -p <project-name> && cd <project-name>
uv init
uv add --dev pytest ruff

Rust

cargo new <project-name>
cd <project-name>

Go

mkdir -p <project-name> && cd <project-name>
go mod init github.com/orangekame3/vibebox/<project-name>

Node.js / TypeScript

mkdir -p <project-name> && cd <project-name>
npm init -y
# For TypeScript:
npm install -D typescript @types/node
npx tsc --init

Arguments

Parse $ARGUMENTS as:

  • First word: language (python, rust, go, node, ts)
  • Second word: project name

If project name is omitted, ask for it.

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon