/pin — the goal this session is anchored to
SkillCommunicationAnchor this session to one goal, the message, target, or outcome it keeps working toward across loops, wakeups, compactions, and hand-offs, and check progress against it.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the /pin — the goal this session is anchored to skill
What this skill tells your AI
The instructions your AI receives, as published by indigoai-us/hq-core in .claude/skills/pin/SKILL.md and read by ahel’s review.
A pin is the one thing the session is for. Once set, every status tick, wakeup, and post-compaction resume starts by re-reading it, and the session does not stop until the pin's done criteria are met or the owner clears it.
Script: core/scripts/hq-pin.sh (set · show · check · note · done · clear).
Usage
/pin <goal> set the pin (goal text; add done criteria in the same call)
/pin show the current pin
/pin done <criterion text> mark one done-criterion met
/pin note <progress> append a dated progress line
/pin clear remove the pin
Set
bash core/scripts/hq-pin.sh set "Ship agents v3 for every company and retire the old runtime" \
--done "every production agent runs the current runtime" \
--done "old-runtime boxes are deprovisioned" \
--done "live smoke passes and a standing monitor watches it" \
--owner "the owner" --channel "project-launch"
Write the goal as an outcome, and write each done criterion so a reader can check it without asking anyone. A pin with no done criteria is a slogan; add at least one.
Behaviour while pinned
- At every wake (a loop tick, a background task returning, a resume after
compaction), run
bash core/scripts/hq-pin.sh checkfirst. Its one line is the frame for the tick: what is being worked toward and how many criteria are still open. - Requests that arrive mid-session (chat, a bound DM channel, a task notification) are handled in service of the pin. A request outside the pin is done if it is small, or queued with a note under the pin if it is not; it never replaces the pin silently. Only the owner changes or clears a pin.
- Progress is written down, not remembered:
noteafter each milestone,donewhen a criterion is met. Checkpoints and hand-offs copy the pin file verbatim so the next session inherits it. - Stopping: the session ends its work only when
checkreports zero open criteria, or the owner says stop. "Nothing to do right now" means wait for the next signal, not finish.
Show and check
bash core/scripts/hq-pin.sh show # full pin: goal, owner, channel, criteria, progress
bash core/scripts/hq-pin.sh check # one line for loop ticks; exit 3 when there is no pin
Notes
- Storage is per session:
workspace/sessions/<sid>/pin.md, pluspin:in the session'smeta.yamlso other tooling can read the goal. - Pairs with
/dm-bind: bind the channel the owner reads, then post progress there in the same shape used for any status update.
Signals
- GitHub stars
- 85
- Forks
- 16
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
pin- Source
- github.com/indigoai-us/hq-core