hooks post-task command (monomind)
Scanned 9/10/2026
Install to Claude Code
npx -y skills add monoes/monomind --skill monomind-monomind-monomind-hooks-post-task --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Monomind Monomind Monomind Hooks Post Task?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/monoes-monomind-monomind-monomind-hooks-post-task)More formats (shields.io, HTML) on the badges page.
---
description: hooks post-task command (monomind)
type: flow
name: monomind-monomind-monomind-hooks-post-task
---
# hooks post-task
Record task completion for neural pattern learning.
## Usage
```bash
npx monomind hooks post-task [options]
```
## Options
| Flag | Short | Type | Required | Description |
|---|---|---|---|---|
| `--task-id` | `-i` | string | no | Task identifier (auto-generated if omitted) |
| `--success` | `-s` | boolean | no | Whether task succeeded (default: true) |
| `--quality` | `-q` | number | no | Quality score 0–1 |
| `--agent` | `-a` | string | no | Agent that executed the task |
| `--format` | — | string | no | Output format: `json` |
## Examples
```bash
# Record successful completion
npx monomind hooks post-task -i task-123 --success true
# Record failed task with quality score
npx monomind hooks post-task -i task-456 --success false -q 0.3
# Record with agent attribution
npx monomind hooks post-task -i task-789 --success true -a coder -q 0.95
# JSON output
npx monomind hooks post-task -i task-123 --success true --format json
```
## Output
- Patterns updated / new patterns discovered
- Task duration
- Trajectory ID (for intelligence system tracking)
## MCP Tool
```javascript
mcp__monomind__hooks_post_task({
taskId: "task-123",
success: true,
quality: 0.95,
agent: "coder",
timestamp: Date.now()
})
```
## See Also
- `hooks pre-task` — register task start
- `hooks metrics` — view learning metrics
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!