Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/Arete-Consortium/ai-skills --skill packageコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
Intelligent CI failure diagnosis and guided remediation for GitHub Actions, GitLab CI, and local builds
Pre-execution mapping of codebases, document collections, or problem spaces. Runs BEFORE any Gorgon workflow to give all agents shared situational awareness
Investigative methodology for analyzing document collections — provenance analysis, anomaly detection, redaction detection, and cross-document validation
| name | package |
| description | Release Packaging Checklist |
| lifecycle | experimental |
Guide through packaging for PyPI, crates.io, or npm.
/package # Auto-detect and guide
/package pypi # Python/PyPI packaging
/package crates # Rust/crates.io packaging
/package npm # Node/npm packaging
## PyPI Release Checklist
### Metadata (pyproject.toml)
- [ ] `name` - Unique on PyPI, lowercase, hyphens
- [ ] `version` - Semantic versioning (X.Y.Z)
- [ ] `description` - One-line summary
- [ ] `readme` - Points to README.md
- [ ] `license` - SPDX identifier (MIT, Apache-2.0, etc.)
- [ ] `authors` - Name and email
- [ ] `urls.Homepage` - GitHub repo URL
- [ ] `urls.Documentation` - Docs URL (if any)
- [ ] `classifiers` - Python versions, license, status
- [ ] `requires-python` - Minimum Python version
### Dependencies
- [ ] All deps have version constraints
- [ ] No unused dependencies
- [ ] Dev deps in `[project.optional-dependencies]`
### Build Verification
- [ ] `pip install -e .` works
- [ ] `python -m build` succeeds
- [ ] `twine check dist/*` passes
### Pre-Publish
- [ ] Version bumped
- [ ] CHANGELOG updated
- [ ] Tests passing
- [ ] README accurate
- [ ] .gitignore includes dist/, *.egg-info/
### Publish Commands
```bash
python -m build
twine check dist/*
twine upload dist/* # or use trusted publishing
## Crates.io Checklist
```markdown
## Crates.io Release Checklist
### Metadata (Cargo.toml)
- [ ] `name` - Unique on crates.io
- [ ] `version` - Semantic versioning
- [ ] `description` - One-line summary
- [ ] `license` - SPDX identifier
- [ ] `repository` - GitHub URL
- [ ] `documentation` - docs.rs or custom
- [ ] `keywords` - Up to 5 keywords
- [ ] `categories` - Valid crates.io categories
### Build Verification
- [ ] `cargo build --release` succeeds
- [ ] `cargo test` passes
- [ ] `cargo clippy` clean
- [ ] `cargo doc` builds
### Pre-Publish
- [ ] Version bumped in Cargo.toml
- [ ] CHANGELOG updated
- [ ] `cargo publish --dry-run` succeeds
### Publish
```bash
cargo publish
## Instructions for Claude
When /package is invoked:
1. **Detect package type** - pyproject.toml, Cargo.toml, package.json
2. **Audit metadata** - Check all required fields
3. **Identify issues** - Missing fields, invalid values
4. **Test build** - Run build commands
5. **Generate checklist** - Customized for the project
6. **Offer fixes** - Suggest or apply corrections