From vibe-taker
Reserved placeholder for v2 friction logging. Documents the log(entry) contract and reserved data path. Command skills do NOT invoke this in v1.
How this skill is triggered — by the user, by Claude, or both
Slash command
/vibe-taker:friction-loggerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **v1 status: not invoked.** This skill ships as documentation-only. Command skills (`capture`, `plant`, `list`) **do not** call into this skill in v1. Reserved for v2 lighting-up of Self-Evolving Plugin Framework Level 3 (friction signals → `/evolve`). Folder + data path exist on disk in v1 so v2 can light up without a directory restructure. KTD-8.
v1 status: not invoked. This skill ships as documentation-only. Command skills (
capture,plant,list) do not call into this skill in v1. Reserved for v2 lighting-up of Self-Evolving Plugin Framework Level 3 (friction signals →/evolve). Folder + data path exist on disk in v1 so v2 can light up without a directory restructure. KTD-8.
Append-only friction capture. One JSON line per friction event.
log(entry)Appends entry (one JSON object) to the data file as a single line.
{
"schema_version": "1.0",
"logged_at": "<ISO 8601>",
"command": "capture | plant | list",
"session_uuid": "<paired with session-logger entry, when both are firing>",
"friction_type": "<see triggers reference>",
"confidence": "low | medium | high",
"context": {
"project_dir": "/abs/path",
"<command-specific keys>": "..."
},
"summary": "<one-line description of the friction>",
"decision": "<what the user/agent did about it, if anything>"
}
The triggers table — when the v2-active version of this logger fires per-command — lives at:
skills/guide/references/friction-triggers.md (v1: not present; reserved for v2.)
In v1 the triggers reference is intentionally absent. v2 lights it up alongside the logger.
~/.claude/plugins/data/vibe-taker/friction.jsonl
:evolve-shaped commands aggregates by friction_type and command, weighted by confidence.Same reasoning as session-logger: reserving the folder + data path in v1 means v2 doesn't need a per-user disk migration when it lights up.
No v1 command skill calls into this skill.
grep -r "friction-logger" plugins/vibe-taker/skills/{capture,plant,list}/returns empty. The placeholder is documentation only.
npx claudepluginhub estevanhernandez-stack-ed/vibe-taker --plugin vibe-takerProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.