在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用$pwd:
project-development
// Use standardized scripts to manage the project environment, testing, and linting.
$ git log --oneline --stat
stars:0
forks:0
updated:2026年2月22日 08:12
SKILL.md
// Use standardized scripts to manage the project environment, testing, and linting.
Automates version bumping in pyproject.toml and creating GitHub releases. Use when releasing a new version of the project.
Guided feature development with codebase understanding and architecture focus
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Gemini CLI's capabilities with specialized knowledge, workflows, or tool integrations.
| 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 | When activating a virtual environment before development. |
script/test | Before submitting changes or to verify functionality. |
script/lint | Before committing to ensure code style and quality. |
script/update | When the repo is stale and there are changes to sync down from git. |
./script/bootstrap first time the repo is created./script/setup to activat the virtual environment./script/lint to check for style issues../script/test to run the test suite.script/ directory at the project root.uv if it is installed, otherwise they will fall back to standard Python tools.