Agent Skill
2/7/2026project-development
Use standardized scripts to manage the project environment, testing, and linting.
A
allenporter
16GitHub Stars
1Views
npx skills add allenporter/home-assistant-synthetic-home
SKILL.md
| Name | project-development |
| Description | 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.
Project Development Skill
This skill teaches you how to interact with the codebase using standardized scripts, following the "Scripts to Rule Them All" pattern.
Core Scripts
| 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. |
Usage Patterns
Standard Development Flow
- Initialize:
./script/bootstrap - Pre-requistes:
./script/setupto start development - Implement: Make your changes to the code.
- Lint:
./script/lintto check for style issues. - Test:
./script/testto run the test suite. - Verify:
./script/serverto run an ephemeral server for manual checks.
Notes
- All scripts are located in the
script/directory at the project root. - Scripts are designed to be run from the project root.
- The scripts will automatically use
uvif it is installed, otherwise they will fall back to standard Python tools.
Skills Info
Original Name:project-developmentAuthor:allenporter
Download