Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始める$pwd:
project-development
// Use standardized scripts to manage the project environment, testing, and linting.
$ git log --oneline --stat
stars:3
forks:1
updated:2026年2月17日 01:47
SKILL.md
// Use standardized scripts to manage the project environment, testing, and linting.
| name | project_development |
| description | Use standardized scripts to manage the project environment, testing, and linting. |
This skill teaches you how to interact with the codebase using standardized scripts, following the "Scripts to Rule Them All" pattern.
| Script | When to use |
|---|---|
script/bootstrap | After cloning or when dependencies change. |
script/setup | Before starting to setup the virtual environment. |
script/test | Before submitting changes or to verify functionality. |
script/lint | Before committing to ensure code style and quality. |
script/update | When looking to sync down changes from the upstream repo. |
script/server | When you need a running server for integration testing or manual verification. |
./script/bootstrap./script/setup to start development./script/lint to check for style issues../script/test to run the test suite../script/server to run an ephemeral server for manual checks.script/ directory at the project root.uv if it is installed, otherwise they will fall back to standard Python tools.