원클릭으로
ts-check-scaffold
ts-check-scaffold에는 robmclarty에서 수집한 skills 4개가 있으며, 저장소 수준 직업 범위와 사이트 내 skill 상세 페이지를 제공합니다.
이 저장소의 skills
Collapse this monorepo into a single-package layout. The chosen app's contents move to the root (src/, test/, docs/); each lib becomes a deep module at src/<lib>/. Workspace-name imports are rewritten to relative paths, dependencies are merged into the root package.json, pnpm-workspace.yaml is deleted, the root tsconfig.json switches from a references solution-config to a standard single-package config, and fallow.toml / cspell.json are reshaped to match. Run optionally on a fresh project (right after /scaffold-init) when a single-app layout fits better than the apps/libs split. The deterministic work happens in scripts/scaffold-flatten.mjs; this skill collects inputs, runs the script, and summarizes the result.
One-shot rebrand of a freshly-cloned ts-check-scaffold repo into a true empty shell for a new project. Rewrites root package.json (name, version reset to 0.0.0, description), LICENSE (author, year, license id), README.md, deletes any root CHANGELOG.md so the derived project starts with a clean release history, deletes placeholder my-app and tools packages, and scaffolds the user's requested apps and libs as bare shells. The deterministic work happens in scripts/scaffold-init.mjs; this skill just collects inputs, runs the script, and summarizes the result. Use exactly once, right after cloning the scaffold.
Bump one target's version via scripts/bump-version.mjs, summarize every commit since that target's last release into a new section in its CHANGELOG.md, and commit with a `<short>-vX.Y.Z` message. Target is either a workspace package (apps/* or libs/*) or the root pseudo-package — the scaffold itself — when no name is passed.
Verify that everything this scaffold needs is installed at the right version (node, pnpm, git, uvx for the ast-grep MCP, fallow-mcp, optional claude CLI) and that `pnpm install` has been run. Renders a checklist with copy-pasteable install hints for whatever is missing. Read-only — never installs anything itself.