Claude-skill-registry chill-putio
Automate chill.institute torrent/magnet ingestion into put.io. Use when asked to search, scan, or fetch torrent/magnet links from chill.institute and add them to put.io, or when troubleshooting the chill/put.io ingestion pipeline (cookies, profiles, put.io token).
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/chill-putio" ~/.claude/skills/majiayu000-claude-skill-registry-chill-putio && rm -rf "$T"
manifest:
skills/data/chill-putio/SKILL.mdsource content
Chill → put.io
Quick start
- Ensure Chrome is logged in to
on mb-server.https://chill.institute - Confirm cookies can be read:
sweetcookie --browser chrome --profile "Default" --domain "chill.institute" --format cookie-header
- Scan a page for magnet/torrent links (dry run):
chillput --url "https://chill.institute" --dry-run
- Add new links to put.io:
chillput --url "https://chill.institute"
How it works
useschillput
(SweetCookieKit CLI) to read Chrome cookies on mb-server.sweetcookie- It fetches the provided chill.institute page, extracts magnet/torrent links, and POSTs them to put.io.
- Dedupe state is stored at
.~/.cache/chillput/state.json
Config
Env file:
(required)PUTIO_OAUTH_TOKEN
(default:CHILL_COOKIE_DOMAIN
)chill.institute
(default:CHILL_COOKIE_PROFILE
)Default
Location:
/Users/mariano/Coding/infra/chillinstitute/.env
Override via CLI:
--profile "Default"--domain "chill.institute"--env /path/to/.env
Notes / gotchas
- Chrome profiles are usually named
,Default
, etc. The displayed Chrome account name is not the profile id.Profile 1 - First cookie read may require a macOS Keychain prompt for “Chrome Safe Storage”. Approve once on mb-server.
- If
fails with a profile name, retry withoutsweetcookie
(the CLI already does this fallback).--profile
Useful commands
List available Chrome stores:
sweetcookie --list-stores --browser chrome
Show help:
chillput --help
References
- See
for CLI paths and troubleshooting.references/usage.md