Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/haraldbregu/friday/commitgit clone --depth 1 https://github.com/HaraldBregu/fridayWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.00275 |
| Opus 5 | $0.00000 | $0.00138 |
| Sonnet 5 | $0.00000 | $0.00055 |
| Haiku 4.5 | $0.00000 | $0.00028 |
Grade A, and why
commit scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
Generate a commit message and push to remote.
Follow these steps:
- Run
git statusto see all changed files (never use -uall flag). - Run
git diffto see unstaged changes andgit diff --cachedto see staged changes. - Run
git log --oneline -5to see recent commit message style. - Stage all relevant changed files using
git addwith specific file paths (avoidgit add -Aunless all changes should be included). - Analyze the staged changes and draft a concise commit message in imperative mood (max 72 chars for the subject line). Focus on the "why" not the "what". Match the style of recent commits.
- Create the commit using a HEREDOC:
git commit -m "$(cat <<'EOF' Your commit message here EOF )" - Run
git pushto push the commit to the remote. - Confirm success to the user with the commit hash and pushed branch.
Important:
- Never use
git push --force. - Never skip hooks with
--no-verify. - Do not commit files that may contain secrets (.env, credentials, etc.).
- If there are no changes to commit, inform the user instead of creating an empty commit.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 25 lines · 0 tokens per session scan A cd321eca4e13
commit is a command published in the GitHub repository HaraldBregu/friday (10 stars, last pushed 2d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 275 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
triage-pr
Triage a PR — classify, optionally fix, optionally enable auto-merge.
loci-sync
Sync information between this project and the Loci brain index. Keep full project memory in the project repo.
tech-debt
Run bun run check:fix and then bunx knip and identify unused files and functions to refactor the project and simplify. Look at the deprecated features and confirm with the user to delete them. Look at the dependencies and remove the ones that are not needed based on knip results.
loci-scan
Refresh the current project's local Loci memory.
audit
Command "audit" from b1rdmania/ghostclaw, covering design audit command, two-layer audit approach, usage, detailed process and layer 1: config compliance check.
normalize
Fix design violations at both layers (config compliance + technical quality) with preview before applying.