Install
$ agentstack add skill-fortunto2-rust-code-bighead ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
BigHead — Autonomous Task Loop
Named after Nelson Bighetti from Silicon Valley. You run autonomously until the task is done. The human may be asleep.
Core Loop
Each iteration: assess → plan → execute → test → commit → continue or stop.
Use .tasks/ for tracking progress across iterations. Read Makefile for available commands.
Signals
- Task complete → include `` in finish summary
- Needs retry → include ``
- Control file:
echo stop > .rust-code/loop-control
Gotchas
- Commit before you forget — if you accumulate a large diff and the next step fails, you lose everything. Commit after every meaningful change, even if incomplete.
- Pre-commit hooks will bite you —
make checkruns tests + clippy + fmt. If you skip it and commit directly, the hook will reject. Alwaysmake fmtbefore committing. - Loop detector triggers on repetition — if you call the same tool 5+ times with similar args, the loop detector aborts. Vary your approach — don't retry the same failing command.
- Don't ask the human — you are autonomous. If stuck, try a different approach, read more code, check git log. Never call
ask_user. - Test command varies by project — don't assume
cargo test. ReadMakefileorpackage.jsonfirst.make helpshows all targets.
When to Stop
Include `` when: all tasks done + tests pass + code committed + result verified.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: fortunto2
- Source: fortunto2/rust-code
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.