@@ -46,31 +46,31 @@ token count, plus overall metadata usage. I've used and tested them most with
- [handling-customer-data](skills/handling-customer-data/SKILL.md): Queries
customer data responsiblyβthe agent answers questions about the data without
ever seeing it directly.
-- [humanizer](skills/humanizer/SKILL.md): Removes AI-generated patterns from text
- like promotional fluff, weasel words, and mechanical sentence structures.
+- [humanizer](skills/humanizer/SKILL.md): Removes AI-generated patterns from
+ text like promotional fluff, weasel words, and mechanical sentence structures.
Based on Wikipedia's AI Cleanup research. Originally from [blader/humanizer].
-- [invoking-subagents](skills/invoking-subagents/SKILL.md): Spawns subagents with
- restricted tool access for parallel tasks across repositories. Requires [synu]
- and the `claude` CLI. Useful for summarizing git history or processing large
- diffs without filling the main context window.
+- [invoking-subagents](skills/invoking-subagents/SKILL.md): Spawns subagents
+ with restricted tool access for parallel tasks across repositories. Requires
+ [synu] and the `claude` CLI. Useful for summarizing git history or processing
+ large diffs without filling the main context window.
- [managing-and-navigating-worktrees](skills/managing-and-navigating-worktrees/SKILL.md):
- Manages git worktrees using [wt] with a bare repository structure. Each
- branch lives in its own sibling directory. Requires [wt], git, and [gum].
+ Manages git worktrees using [wt] with a bare repository structure. Each branch
+ lives in its own sibling directory. Requires [wt], git, and [gum].
- [notifying-through-ntfy](skills/notifying-through-ntfy/SKILL.md): Sends push
notifications via [ntfy.sh] when requested, such as at the end of its turn.
-- [rebasing-with-git](skills/rebasing-with-git/SKILL.md): Manages git rebase workflows
- from simple rebases to the drop-and-repick integration branch pattern. Assumes
- `upstream` remote for forks and `rerere` enabled. Supports worktrees including
- `wt`-managed repos.
-- [researching-with-rumilo](skills/researching-with-rumilo/SKILL.md): Dispatches AI
- research subagents via [rumilo] for web search and repository exploration.
+- [rebasing-with-git](skills/rebasing-with-git/SKILL.md): Manages git rebase
+ workflows from simple rebases to the drop-and-repick integration branch
+ pattern. Assumes `upstream` remote for forks and `rerere` enabled. Supports
+ worktrees including `wt`-managed repos.
+- [researching-with-rumilo](skills/researching-with-rumilo/SKILL.md): Dispatches
+ AI research subagents via [rumilo] for web search and repository exploration.
Research topics, look up library usage, or explore external codebases without
filling the main context window.
- [resuming-work-through-lunatask](skills/resuming-work-through-lunatask/SKILL.md):
Resumes deferred work from [Lunatask] handoff notes via [lune].
-- [reviewing-code](skills/reviewing-code/SKILL.md): Reviews code for correctness,
- security, reliability, performance, and quality. Covers PRs, diffs, and
- general change review.
+- [reviewing-code](skills/reviewing-code/SKILL.md): Reviews code for
+ correctness, security, reliability, performance, and quality. Covers PRs,
+ diffs, and general change review.
- [scripting-with-go](skills/scripting-with-go/SKILL.md): Creates executable Go
scripts using a shell trick (not a true shebang). For automation and tooling
outside of Go projects.
@@ -83,9 +83,9 @@ token count, plus overall metadata usage. I've used and tested them most with
- [writing-roc-lang](skills/writing-roc-lang/SKILL.md): Writes Roc code with
strong static types, helpful compiler errors, and functional programming.
Covers both full applications and one-off scripts.
-- [writing-rust](skills/writing-rust/SKILL.md): Writes idiomatic Rust with strict
- quality gates: `cargo fmt`, `clippy -- -D warnings`, and required tests.
- Enforces `thiserror` for libs, `anyhow` for apps, warns against common
+- [writing-rust](skills/writing-rust/SKILL.md): Writes idiomatic Rust with
+ strict quality gates: `cargo fmt`, `clippy -- -D warnings`, and required
+ tests. Enforces `thiserror` for libs, `anyhow` for apps, warns against common
anti-patterns.
[blader/humanizer]: https://github.com/blader/humanizer
@@ -168,10 +168,10 @@ Symlinked skills update automatically.
## Contributions
-Patch requests are in [amolith/llm-projects] on [pr.pico.sh]. You don't
-need a new account to contribute, you don't need to fork this repo, you
-don't need to fiddle with `git send-email`, you don't need to faff with
-your email client to get `git request-pull` working...
+Patch requests are in [amolith/llm-projects] on [pr.pico.sh]. You don't need a
+new account to contribute, you don't need to fork this repo, you don't need to
+fiddle with `git send-email`, you don't need to faff with your email client to
+get `git request-pull` working...
You just need:
@@ -197,7 +197,8 @@ complete example workflow.
## Token stats
-Real token stats as reported by [Synthetic.new]'s [/messages/count_tokens] endpoint with [./skill-stats.go](./skill-stats.go).
+Real token stats as reported by [Synthetic.new]'s [/messages/count_tokens]
+endpoint with [./skill-stats.go](./skill-stats.go).
[Synthetic.new]: https://synthetic.new
[/messages/count_tokens]: https://dev.synthetic.new/docs/anthropic/messages/count-tokens
@@ -254,13 +255,13 @@ Token breakdown:
Token breakdown:
Name: 30 tokens
Description: 108 tokens
- Body: 1927 tokens (88 lines)
+ Body: 1841 tokens (84 lines)
References:
cli.md 589 tokens
handoff.md 2769 tokens
installing-lune.md 176 tokens
βββββββββββββββββββββββββββββββββββββββββββββββ
- Total: 5599 tokens
+ Total: 5513 tokens
=== formatting-commits ===
@@ -339,17 +340,6 @@ Token breakdown:
βββββββββββββββββββββββββββββββββββββββββββββββ
Total: 8641 tokens
-=== querying-documentation ===
-
-Token breakdown:
- Name: 22 tokens
- Description: 132 tokens
- Body: 796 tokens (22 lines)
- References:
- dependencies.md 108 tokens
- βββββββββββββββββββββββββββββββββββββββββββββββ
- Total: 1058 tokens
-
=== rebasing-with-git ===
Token breakdown:
@@ -365,9 +355,9 @@ Token breakdown:
Token breakdown:
Name: 25 tokens
Description: 159 tokens
- Body: 2999 tokens (107 lines)
+ Body: 3133 tokens (111 lines)
βββββββββββββββββββββββββββββββββββββββββββββββ
- Total: 3183 tokens
+ Total: 3317 tokens
=== resuming-work-through-lunatask ===
@@ -447,10 +437,10 @@ Token breakdown:
SUMMARY
============================================================
-Skills: 22
-Metadata: 3214 tokens
-Combined bodies: 58635 tokens
-Overall: 184073 tokens
+Skills: 21
+Metadata: 3060 tokens
+Combined bodies: 57887 tokens
+Overall: 183063 tokens
Validation errors: 0
Largest skills (by total tokens):