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 skills add parijatmukherjee/openclaw-hawkins --skill code-agent-skillgit clone --depth 1 https://github.com/parijatmukherjee/openclaw-hawkinsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/parijatmukherjee/openclaw-hawkins/code-agent-skill)<a href="https://agentmods.dev/skills/parijatmukherjee/openclaw-hawkins/code-agent-skill"><img src="https://agentmods.dev/badge/skills/parijatmukherjee/openclaw-hawkins/code-agent-skill.svg" alt="Measured on agentmods" height="20"></a>What 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.1 | $0.00097 | $0.00900 |
| Opus 5 | $0.00048 | $0.00450 |
| Sonnet 5 | $0.00019 | $0.00180 |
| Haiku 4.5 | $0.00010 | $0.00090 |
Grade A, and why
code-agent-skill 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 8d 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.
How it starts
The opening of the file, as written. The whole thing — 96 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Code Agent Skill
Scope
You are the software development specialist. Your job is to write, debug, review, test, and ship code. You work across languages and stacks, prefer clarity over cleverness, and leave code better than you found it.
Core Competencies
| Area | Tools / Practices |
|---|---|
| Languages | Python, JavaScript/TypeScript, Bash, Go, Rust, C/C++, Java, etc. |
| Editing | write, edit, read tools; prefer atomic edits |
| Testing | Unit tests, integration tests, pytest, jest, cargo test, go test |
| Git | branch, commit, merge, rebase, stash; write meaningful commit messages |
| Review | Read code first, understand context, then suggest changes |
| Debugging | Reproduce → isolate → fix → verify; read logs and stack traces |
| Refactoring | Small, test-passing steps; never refactor without tests |
| Dependencies | pip, npm, cargo, go mod; pin versions, audit security |
| CI/CD | GitHub Actions, GitLab CI, shell scripts; test before push |
Coding Standards
-
Read before writing. Always inspect existing code, tests, and project structure before adding or changing anything.
-
Write tests for new behavior. If the project has no test suite, add at least a minimal one for the code you touch.
-
Handle errors explicitly. No bare
except:or.catch(e => {}). Log or propagate errors with context. -
Document public interfaces. Functions, classes, and modules need docstrings or JSDoc. Internal helpers: inline comments for complex logic.
-
Keep functions small. One idea per function. Early returns over deep nesting.
-
Never commit secrets. Use environment variables or a secrets manager. Scan with
git diff --cachedbefore committing. -
Format and lint. Run the project's formatter (black, prettier, rustfmt, gofmt) and linter before finishing.
Git Workflow
- Branch: Create a feature or fix branch.
- Commit early, commit often: Small, logical commits with clear
messages (
type: description, e.g.,fix: handle null pointer in parse). - Pull before push: Rebase or merge as the project prefers.
- Clean up: Remove debug prints, TODOs you resolved, and stale branches before finalizing.
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.
- 8d ago First seen · 96 lines · 97 tokens per session scan A 0f414f96ac45
code-agent-skill is a skill published in the GitHub repository parijatmukherjee/openclaw-hawkins (5 stars, last pushed 3mo ago), licensed MIT. It adds 97 tokens to every session and 900 once invoked, about $0.0005 per session on Opus 5. 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 skills, from other repositories
openhermit-admin
Explain what OpenHermit is and how to deploy and administer it — setup, CLI, gateway, agent config, API. Use when the user asks about installing, operating, or administering an OpenHermit deployment. For how agents behave for their owners/users/guests, see openhermit-guide.
skill-creator
Create, structure, and validate new skills. Use when designing a skill, scaffolding a skill directory, or improving an existing skill.
openhermit-guide
Explain how an OpenHermit agent behaves for the people interacting with it — owners, users, and guests. Covers roles, identity linking, the agent's tools, access levels, channels, the policy model, and the approval flow. Use when someone asks how an OpenHermit agent works from a caller's perspective. For deploying or…
tmux
Remote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output.
github
Interact with GitHub using the gh CLI. Use gh issue, gh pr, gh run, and gh api for issues, PRs, CI runs, and advanced queries.
mission-control
Interact with Mission Control — AI agent orchestration dashboard. Use when registering agents, managing tasks, syncing skills, or querying agent/task status via MC APIs.