ソース情報
- リポジトリ
- cvsz/zeaz
- ソースの最終更新活動
- 2026年7月30日 01:59
- 検出された SKILL.md の言語
- 英語
- スター
- 1
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/cvsz/zeaz --skill zeazコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | zeaz |
| description | Repository-specific development patterns and workflows for MooPiew. |
Repository-maintained workflow guidance
This skill captures repository-specific development patterns for the Python service, React/TypeScript clients, deployment assets, and provider-document workflow.
File Naming: Use the naming convention already established by the nearest package. Example:
document-upload.js
provider-list-item.js
Import Style:
Use relative imports.
Example:
import { uploadDocument } from './document-upload.js';
Export Style:
Use named exports.
Example:
// In document-upload.js
export function uploadDocument(file) { ... }
Commit Messages:
Follow Conventional Commits, primarily using the feat prefix.
Example:
feat: add drag-and-drop support to document upload
Trigger: When adding or improving document upload functionality for providers
Command: /new-document-upload-feature
Update backend logic
Modify backend files (e.g., app.py) to support new or changed document upload features.
Database migrations
Create or update SQL migration files (migrations/*.sql) to reflect new document requirements.
Documentation
Update or add documentation:
docs/ARCHITECTURE.mddocs/DATABASE.mddocs/architecture/*.mddocs/reference/providers/*.mddocs/openapi.yamlChangelog and Roadmap
Update CHANGELOG.md and ROADMAP.md to reflect your changes.
Frontend components
Modify or add:
apps/web/src/documents.tsxapps/web/src/documents.cssapps/web/documents.htmlweb/platform/ output through npm run publish:platformTesting
Update or add tests in tests/test_documents.py.
Scripts and templates
Update scripts or templates as needed, such as templates/store-master-data.json or scripts/ci/test.sh.
Example: Adding a new document field to the upload component
// apps/web/src/documents.tsx
export function validateDocumentType(type: string): boolean {
return type.length > 0;
}
Trigger: When improving document upload UX or managing provider secret rotation
Command: /enhance-document-upload-ux
Provider rotation scripts
Update or add:
scripts/rotate-provider-secrets.shscripts/provider-rotation.d/README.mdFrontend UX improvements
Modify:
apps/web/src/documents.cssapps/web/src/documents.tsxAdmin interface
Update apps/web/src/documents.tsx and republish the platform build.
Example: Improving upload button styling
/* web/components/document-upload/document-upload.css */
.upload-btn {
background: #007bff;
color: #fff;
}
Test File Naming:
Python regression tests use tests/test_*.py; TypeScript tests follow the
nearest package convention.
Example:
tests/test_documents.py
Framework:
Python tests use unittest; TypeScript validation uses repository npm
scripts.
Example test structure:
python3 -m unittest tests.test_documents -v
| Command | Purpose |
|---|---|
| /new-document-upload-feature | Start a new provider document upload feature or enhancement |
| /enhance-document-upload-ux | Improve document upload UX or manage provider secret rotation |