소스 정보
- 저장소
- abe238/hotinai
- 최근 소스 활동
- 2026년 7월 20일 05:14
- 감지된 SKILL.md 언어
- 영어
- 스타
- 3
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/abe238/hotinai --skill verify명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | verify |
| description | How to build and drive the real hotin CLI for verification (not tests). |
hotin is a stdlib-only Python CLI (pyproject.toml entry point hotin = "hotin.cli:main").
Zero-key core (github, trends, hn, npm) hits real public APIs with no config.
python3 -m venv /tmp/hotin_verify_venv
source /tmp/hotin_verify_venv/bin/activate
pip install --quiet -e .
export XDG_DATA_HOME=/tmp/hotin_verify_xdg # isolates the sqlite cache from ~/.local/share
hotin is now a real binary on PATH. Config lives at ~/.config/hotin/.env (XDG_CONFIG_HOME,
not XDG_DATA_HOME) — setup --check reads it directly, unaffected by the cache override above.
hotin about / hotin setup --check — no network, sanity check the install.hotin hn --limit 3 — one real live call, fast, good smoke test of the free-text
GitHub-reference extraction (hn/reddit/youtube share this mechanism).hotin hot --limit N --json — the real end-to-end surface: fetch_all() across all 8
adapters concurrently, cache, merge, rank. Takes ~25s (the fetch_all timeout ceiling) if
any source is slow/failing — see gotcha below. Re-running within 300s (default TTL) should
make previously-successful sources report "served from cache" and skip the network.hotin search <query> --json, hotin show <owner/repo> --json — cache-only, instant,
exercise the merge/score path without any network.search with no query (exit 2), negative --limit (exit 2), show on
an uncached repo (clean JSON {"error": "not_cached", ...}, exit 0).hotin.sources.npm.fetch() does one search request per DEFAULT_QUERIES term, then one
THROTTLE-gated (1.5s+jitter) download-stats request per candidate package, sequentially.
With 5 query terms × up to 40 results each, that's typically 30-100+ unique candidates —
90-300+ seconds of pure throttle wait, blowing straight through engine.fetch_all's 25s
per-cycle budget. Confirmed live 2026-07-19: npm reports "error", "timed out" on every
hot run, first run AND subsequent warm-cache runs (since it never successfully populates
its own cache entry, it's never "fresh" and always retries the full 25s). This is a known,
reliably-reproducible issue, not flaky — don't waste another live run "confirming" it again.
sh scripts/build_zipapp.sh
python3 dist/hotin.pyz --help
python3 -c "import zipfile; print(zipfile.ZipFile('dist/hotin.pyz').namelist())" # confirm new files are staged
scripts/build_zipapp.sh does a fresh cp -R src/hotin each run, so new modules are picked
up automatically — no manual list to maintain.
Every adapter fetch hits a real public API. Don't loop hot/hn/etc. repeatedly to "be
sure" — one clean live run per surface is enough evidence. search/show are cache-only and
safe to run freely.