agent/claude/code/skills/wallet-releases/SKILL.md
Snider 9942ab8081 refactor: restructure as plugin monorepo
Reorganise as a marketplace with multiple focused plugins:
- claude/code: Core development (hooks, scripts, data collection)
- claude/review: Code review automation
- claude/verify: Work verification
- claude/qa: Quality assurance loops
- claude/ci: CI/CD integration

Structure:
- .claude-plugin/marketplace.json lists all plugins
- Each plugin has its own .claude-plugin/plugin.json
- Commands namespaced: /code:*, /review:*, /qa:*, etc.

Install individual plugins or all via marketplace:
  claude plugin add host-uk/core-agent
  claude plugin add host-uk/core-agent/claude/code

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-01 19:44:26 +00:00

1.8 KiB

Wallet Releases Collector

Archive wallet software releases, changelogs, and binary checksums.

Data Available

Data Type Source Notes
Release binaries GitHub releases Preserve before deletion
Changelogs Release notes Feature history
Checksums Release page Verify integrity
Source tags Git tags Build from source

Usage

# Collect all releases for a project
./generate-jobs.sh LetheanNetwork/lethean > jobs.txt

# Just metadata (no binaries)
./generate-jobs.sh LetheanNetwork/lethean --metadata-only > jobs.txt

# Include pre-releases
./generate-jobs.sh LetheanNetwork/lethean --include-prereleases > jobs.txt

Output

releases-lethean/
├── v5.0.0/
│   ├── release.json          # GitHub API response
│   ├── CHANGELOG.md          # Release notes
│   ├── checksums.txt         # SHA256 of binaries
│   └── assets.json           # Binary URLs (not downloaded)
├── v4.0.1/
│   └── ...
└── INDEX.md                   # Version timeline

Job Format

URL|FILENAME|TYPE|METADATA
https://api.github.com/repos/LetheanNetwork/lethean/releases|releases-lethean-all.json|github-api|project=lethean
https://github.com/LetheanNetwork/lethean/releases/tag/v5.0.0|releases-lethean-v5.0.0.html|github-web|project=lethean,version=v5.0.0

Preservation Priority

  1. Critical: Changelogs, checksums, version numbers
  2. Important: Release dates, asset lists, download counts
  3. Optional: Binary downloads (large, reproducible from source)

Notes

  • Abandoned projects often delete releases first
  • GitHub API rate limited - use authenticated requests
  • Some projects use different release platforms (SourceForge, own CDN)
  • Track gpg signature files when available