https://github.com/saadjs/agent-stuff
https://github.com/saadjs/agent-stuff
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/saadjs/agent-stuff
- Owner: saadjs
- Created: 2026-04-17T01:55:42.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2026-06-06T16:59:08.000Z (6 days ago)
- Last Synced: 2026-06-06T18:23:01.197Z (5 days ago)
- Language: Shell
- Size: 30.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# agent-stuff
Personal configs and scripts for coding agents.
## Contents
- `skills/` — Agent skills, each in `skills//SKILL.md`.
- `claude/statusline-command.sh` — Claude Code status line. Renders host, cwd, git branch/status, session name, model, context usage, and rate limits.
## Installing Skills
```sh
skillctl add saadjs/agent-stuff --tool agents --scope global
skillctl add saadjs/agent-stuff --tool codex --scope global
skillctl add saadjs/agent-stuff --tool claude --scope project
```
## Using the Claude Code status line
Copy the script somewhere stable and point `settings.json` at it:
```json
{
"statusLine": {
"type": "command",
"command": "zsh /path/to/statusline-command.sh"
}
}
```
Requires `jq` on `PATH`.