The /rns-update skill checks PyPI for new RNS / LXMF releases, runs the verifier suite against the upgrade, samples five anchor citations for drift, and proposes a pin-bump diff (without committing). It treats "PyPI cold for >60 days" as a signal that upstream may have moved to the Reticulum-network-only distribution promised in the 1.2.4 release notes, and walks through the rngit / rnpkg fallback in step 9 — most of which is to-be-built per todo.md "Upstream distribution shift". .gitignore excludes per-user settings.local.json and the scratch copies of upstream source (microReticulum, RNode_Firmware, repeater) that get curl'd in during sessions. Those live under their upstream licenses and don't belong in this repo. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
22 lines
516 B
Text
22 lines
516 B
Text
# Claude Code per-user config (permission allowlist; tracked separately per machine)
|
|
.claude/settings.local.json
|
|
|
|
# Scratch copies of upstream source pulled in for cross-referencing during sessions
|
|
# (microReticulum, RNode_Firmware, reticulum-lora-repeater). Live under their own
|
|
# upstream licenses; not redistributed from this repo.
|
|
.claude/*.cpp
|
|
.claude/*.h
|
|
.claude/*.hpp
|
|
.claude/*.ino
|
|
.claude/*.py
|
|
.claude/*.ini
|
|
|
|
# Python bytecode
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# Local IDE / OS clutter
|
|
.vscode/
|
|
.idea/
|
|
.DS_Store
|
|
Thumbs.db
|