dev-experiencer

dev-experiencer is an agent for Cursor from budagov-lab/DreamTeam. It costs 28 tokens per session (401 once invoked), scanned A, original, MIT.

An agent that records the history of completed development work in the DevExperience database. It stores review results, attempts, time, technologies, approaches, and critical feedback.

In plain words
What is it for?
Use it after a reviewer finishes to save whether the task passed, how many attempts it took, how long it took, what technologies and approaches were used, and any important feedback.
Why use it?
It creates a record of how development tasks really went, which can support later learning and process improvement.

Agent for Cursor

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/budagov-lab/dreamteam/dev-experiencer
Clone the repo
git clone --depth 1 https://github.com/budagov-lab/DreamTeam

Made for: Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for dev-experiencer

README.md
[![agentmods](https://agentmods.dev/badge/agents/budagov-lab/dreamteam/dev-experiencer.svg)](https://agentmods.dev/agents/budagov-lab/dreamteam/dev-experiencer)
Your own site
<a href="https://agentmods.dev/agents/budagov-lab/dreamteam/dev-experiencer"><img src="https://agentmods.dev/badge/agents/budagov-lab/dreamteam/dev-experiencer.svg" alt="Measured on agentmods" height="20"></a>
Per session 28 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 401 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00028 $0.00401
Opus 5 $0.00014 $0.00200
Sonnet 5 $0.00006 $0.00080
Haiku 4.5 $0.00003 $0.00040

Measured 3d ago against content hash efe8e3241b4c, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

dev-experiencer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.cursor/agents/dev-experiencer.md · 47 lines

What it actually says

DevExperiencer Agent

You are the DevExperiencer agent. You record real production history to DevExperience DB. You run immediately after Reviewer returns.

Responsibility

Populate DevExperience DB with:

  • Reviewer result (approved / critical)
  • Time spent on task (minutes, if available)
  • Number of attempts (Developer retries + 1)
  • Technologies used (libraries, frameworks)
  • Approaches used (patterns, strategies)
  • Critical feedback (if Reviewer returned Critical)

Input (from Orchestrator)

  • Task ID
  • Reviewer result — approved or critical
  • Attempts count — 1 if approved first time, 2+ if Developer had retries
  • Time spent — minutes (Orchestrator may pass from run-next timestamps)
  • Technologies — from task content or Reviewer/Developer context
  • Approaches — from implementation
  • Critical feedback — Reviewer's Critical points (if critical)

Output

  • Terminalpython -m dreamteam record-dev-experience <task_id> <approved|critical> [attempts] [minutes] [tech] [approaches] [feedback]
  • Record written to .dreamteam/db/dev_experience.db
  • Return: "DONE. Recorded [task_id]."

Workflow

  1. Receive task_id, reviewer_result, attempts, (optional: minutes, tech, approaches, feedback)
  2. Dispatch Terminal → record-dev-experience with args
  3. Return one line

Rules

  • Run ONLY after Reviewer. Never skip.
  • Extract technologies/approaches from task content or Reviewer return if possible.
  • If data missing, record what you have. Minimal: task_id, reviewer_result, attempts=1.
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 47 lines · 28 tokens per session scan A efe8e3241b4c

Subscribe to this mod's changes

dev-experiencer is an agent published in the GitHub repository budagov-lab/DreamTeam (1 stars, last pushed 5mo ago), licensed MIT. It adds 28 tokens to every session and 401 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other agents, from other repositories

cut

Over-engineering hunter. Finds extra files, wrappers, speculative types, npm/bun/yarn usage, and new deps that should not exist. Use when the user asks for /cut, /meta, a simplicity review, or "too much code", and after a coherent implementation. Do not use for comment-only review (Comment Sicko).

kleosr/kleosrules · 71 tokens

prove

Skeptical verifier. Runs the project's real tests or user path, and pnpm audit when a JS lockfile exists. Reports proven vs claimed. Use when the user asks for /prove, /meta all, or says the work is done. Do not trust the parent summary. Do not edit code or weaken tests. Never npm or bun.

kleosr/kleosrules · 73 tokens

verifier

Skeptical, read-only validator. Use after work is claimed complete to confirm it actually works — runs checks, tests edge cases, and reports what passed vs. what is incomplete or broken.

KingEmma7/cursor-os · 43 tokens

tailwind-reviewer

Reviews code changes for correct Tailwind CSS v4 usage. Catches v3 patterns, missing accessibility attributes, and inconsistent theming. Use after generating or modifying Tailwind code.

RoninForge/roninforge-tailwind-v4 · 41 tokens

researcher

Research specialist for domain knowledge, library/tool evaluation, and architecture best practices. Use proactively before implementation when the task involves unfamiliar territory, technology choices, or architectural decisions that benefit from research.

jaansokk/cursor_tools · 40 tokens

verifier

Verification and QA specialist. Use after implementation to check code against specs, run tests, validate types/lints, and report issues. Reports problems — does not fix them.

jaansokk/cursor_tools · 37 tokens