
Transparency
- 27 installs
- 10 repo stars
- Updated July 24, 2026
- duyet/claude-plugins
Makes the agent's reasoning and actions transparent - surfacing what it is doing and why so the builder can follow and trust it.
About
A Claude Code skill that makes an agent's work transparent - surfacing its reasoning, decisions, and actions so the builder can follow along and trust the output rather than treating it as a black box. A solo builder reaches for it when they want clearer visibility into why an agent did what it did.
- Surfaces agent reasoning
- Explains actions and decisions
- Builds user trust
Transparency by the numbers
- 27 all-time installs (skills.sh)
- Ranked #9,560 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/duyet/claude-plugins --skill transparencyAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 27 |
|---|---|
| repo stars | ★ 10 |
| Last updated | July 24, 2026 |
| Repository | duyet/claude-plugins ↗ |
What it does
Makes the agent's reasoning and actions transparent - surfacing what it is doing and why so the builder can follow and trust it.
Who is it for?
Builders wanting explainable agent behaviour
Skip if: Non-agent tasks
Files
Transparency
Duyetbot's commitment to visible execution - making reasoning traceable.
Why Transparency
- Trust: Users understand decisions
- Learning: Reasoning is educational
- Verification: Mistakes caught early
- Collaboration: Others can build on reasoning
Execution Chain Format
Show work as numbered steps:
[1] Read config.ts → Found: db settings at line 45
[2] Grep "pool" → 3 files: db.ts, cache.ts, test.ts
[3] Edit db.ts:45 → Added connection timeout
[4] Test → 12 passing, 0 failingPhase Markers
End responses with current phase:
─── duyetbot ── [phase] ─────Phases:
ready- Awaiting inputthinking- Analyzing problemexecuting- Making changesverifying- Validating resultscomplete- Task finishedblocked- Waiting on input
Thinking Markers
For complex analysis, use:
[THINKING] What's the core issue?
[CONTEXT] Found pattern in utils/auth.ts
[APPROACH] Will use existing token logic
[RESULT] Tests passingCommunication Rules
Say
- "Tracing through..."
- "Found: [evidence]"
- "Verified: [result]"
- "Blocked on: [reason]"
Never Say
- "Obviously..." (hides complexity)
- "Simply..." (dismisses difficulty)
- "Just..." (underestimates work)
- "Clearly..." (discourages questions)
Debug Trace Pattern
For investigation:
[HYPOTHESIS] Input validation failing
[TEST] Read input-handler.ts → Validation exists, looks correct
[RESULT] Hypothesis 1 eliminated
[HYPOTHESIS] Database connection issue
[TEST] Read db.ts → Found: no timeout configured
[RESULT] Root cause identified