Agent skill

The vibetracker-rate skill lets compatible agent harnesses submit honest ratings for AI sessions through vtcli.

Install

Install and authenticate vibetracker-cli first. The skill uses the CLI for auth, validation, submission, and sentiment output.

bash
npm install -g vibetracker-cli
vtcli auth login
vtcli skill install
FieldTypeRequiredDescription
vtcli skill installInstall vibetracker-rate into the current project when possible
vtcli skill install --global --agent codexInstall globally for Codex
npx skills add https://github.com/Skeegan123/vibetracker-rate --skill vibetracker-rateInstall directly through the open skills installer

Rating workflow

Ask your agent to rate the current model session as good, okay, or bad. The skill maps those words to 1, 0, or -1, preserves your comment exactly, and avoids guessing optional context when it is unclear.

text
Rate this Codex session as bad.
Comment: It lost track of the requested file changes.
If the model is missing or ambiguous, the skill should ask one short question or use vtcli options list --type model --search <query> to inspect candidates.

Submission fields

The skill deliberately keeps submissions small. It only includes optional context when the transcript or harness exposes a high-confidence match.

FieldTypeRequiredDescription
modelstringYesModel identifier from the harness or user request
score-1 | 0 | 1YesNegative, neutral, or positive session rating
commentstringNoExact human wording when a comment is provided
useCasestringNoIncluded only when the conversation clearly supports it
interfacestringNoIncluded only when the agent can infer it confidently
toolIdstringNoIncluded only when the selected interface/tool is clear

For CLI command details, including vtcli skill install, see the CLI docs.