← Back to list

project-development
by allenporter
Personal Knowledge Management Hub for Supernote: parse notebooks, self-host services, and unlock AI insights.
⭐ 4🍴 0📅 Jan 24, 2026
SKILL.md
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 Supernote-Lite 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/test | Before submitting changes or to verify functionality. |
script/lint | Before committing to ensure code style and quality. |
script/server | When you need a running server for integration testing or manual verification. |
script/db_revision | To generate a database migration revision. |
Usage Patterns
Standard Development Flow
- Initialize:
./script/bootstrap - Implement: Make your changes to the code.
- Database: If you changed models, run
./script/db_revision "...". - 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.
Score
Total Score
75/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
✓最近の活動
1ヶ月以内に更新
+10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
Reviews
💬
Reviews coming soon


