From meta
Logs the outcome of a skill execution to observations/<skill-name>/runs.md. Trigger on: "log this run", "skill worked", "skill failed", "this didn't work", "log the outcome", "record this", "note that", or after any skill completes with a clear success, partial, or failure outcome. Creates the observations file if it does not exist, then appends an entry with date, task description, skill used, outcome, what worked, what failed, and any error messages observed.
npx claudepluginhub securityfortech/hacking-skills --plugin metaThis skill uses the workspace's default tool permissions.
Track how skills perform in practice. A skill that works in theory may miss steps, use outdated payloads, or fire on the wrong triggers in real-world conditions. This skill captures that gap by recording execution outcomes to a per-skill log file.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Track how skills perform in practice. A skill that works in theory may miss steps, use outdated payloads, or fire on the wrong triggers in real-world conditions. This skill captures that gap by recording execution outcomes to a per-skill log file.
Activate this skill when the user says any of:
skills/.success (goal achieved), partial (some steps worked, some didn't), or fail (skill produced no useful result).observations/<skill-name>/runs.md. Create the file and directory if they don't exist.---
date: YYYY-MM-DD
skill: <skill-name>
task: <one-line description of what was attempted>
outcome: success | partial | fail
what_worked: |
<describe what steps, payloads, or approaches produced results>
what_failed: |
<describe what steps or payloads did not work>
errors: |
<paste any error messages or unexpected responses>
notes: |
<any additional context — target type, environment quirks, etc.>
---
User: "log this run — bola-idor worked, I found a sequential integer ID on /api/orders and was able to read other users' orders using my own session token"
Response: Creates or appends to observations/bola-idor/runs.md:
---
date: 2026-03-14
skill: bola-idor
task: Test /api/orders endpoint for horizontal IDOR using sequential integer ID
outcome: success
what_worked: |
Sequential integer IDs confirmed. Substituting victim's order ID (attacker ID +/- 1-10)
returned full order details including name, address, and payment last4. Tested with
attacker's Bearer token — no ownership check.
what_failed: |
UUID endpoint /api/orders/uuid was not vulnerable — UUIDs not guessable.
errors: |
None.
notes: |
REST API, no GraphQL. /api/v1/ also vulnerable. /api/v2/ returns 403 on cross-user ID.
---
This is a meta-skill — it has no fix patterns. It generates data that other skills (especially /amend-skill) consume.