9fb19eae63
Every job sync.sh did has a better replacement: - Per-harness skill dirs (~/.claude/skills, ~/.codex/skills, ~/.agents/skills): `npx skills add . -g -y` writes to every detected harness's home dir and uses symlinks by default. Edits propagate live — no re-deploy step. - Hermes (~/.hermes/skills/research/last30days): `hermes skills install mvanhorn/last30days-skill --force` pulls from GitHub and handles the deploy itself. The script wrapping was redundant. - OpenClaw variant: `clawhub install last30days-official` is what users already run per the README; the maintainer doesn't need a separate variant-deploy step in the public repo's scripts. - Claude marketplace cache (~/.claude/plugins/cache/...): this was a "test against the official install path" hack we shouldn't have been recommending. With PR #400's resolver collapse, STEP 0 no longer enforces the cache as the only valid SKILL.md location. Just install the skill normally via `npx skills` or the marketplace. Cleanup: - DELETE skills/last30days/scripts/sync.sh - tests/test_version_consistency.py — drop test_sync_cache_path_uses_skill_version - CLAUDE.md — replace the sync.sh command + rule with `npx skills add . -g -y` - HERMES_SETUP.md — Installation now uses `hermes skills install --force`; developer-alternative section shows the symlink pattern for live editing - render.py — _skill_version docstring no longer attributes the ".claude-plugin absent" case to sync.sh; explains it via per-harness install paths in general - .github/PULL_REQUEST_TEMPLATE.md — drop the "Ran bash scripts/sync.sh" checklist item CHANGELOG and historical docs (release notes, plan files) keep their existing sync.sh mentions as accurate history.
26 lines
1.4 KiB
Markdown
26 lines
1.4 KiB
Markdown
# last30days Skill
|
|
|
|
Claude Code skill for researching any topic across Reddit, X, YouTube, and web.
|
|
Python scripts with multi-source search aggregation.
|
|
|
|
## Structure
|
|
- `skills/last30days/SKILL.md` — canonical skill definition
|
|
- `skills/last30days/scripts/last30days.py` — main research engine
|
|
- `skills/last30days/scripts/lib/` — search, enrichment, rendering modules
|
|
- `skills/last30days/scripts/lib/vendor/bird-search/` — vendored X search client
|
|
|
|
## Commands
|
|
```bash
|
|
python3 skills/last30days/scripts/last30days.py "test query" --emit=compact
|
|
npx skills add . -g -y # one-time: symlink this repo into every detected harness's skill dir
|
|
```
|
|
|
|
## Rules
|
|
- `lib/__init__.py` must be bare package marker (comment only, NO eager imports)
|
|
- One-time setup: `npx skills add . -g -y` creates symlinks from each detected harness's skill dir to this repo. Edits in the working tree propagate live to every harness — no re-deploy step needed.
|
|
- Git remote: origin = public (`mvanhorn/last30days-skill`)
|
|
|
|
## Beta channel
|
|
|
|
Experimental changes get tested on `mvanhorn/last30days-skill-private`, which installs as a parallel `/last30days-beta` slash command. Beta-only changes never ship to public without a review PR here. Workflow guide lives at `BETA.md` in the private repo. Plan that established this setup: `docs/plans/2026-04-17-005-feat-beta-skill-from-private-repo-plan.md`.
|