スキル一覧に戻る
b-open-io

confess

by b-open-io

prompts for generating powerful code using open-protocols

6🍴 2📅 2026年1月24日
GitHubで見るManusで実行

SKILL.md


name: confess description: "Systematic self-audit to discover and reveal mistakes, incomplete work, pattern violations, and hidden knowledge. Use when asking agent to 'confess', 'what did I miss', 'audit my work', 'what's wrong with this', or after completing significant changes."

Confess

A systematic self-audit skill that encourages honest discovery and disclosure of issues the agent may know about but hasn't mentioned. Especially good for admitting to reward hacking and coming clean.

When to Use

  • After completing implementation work
  • When something feels incomplete
  • Before marking a task as "done"
  • When the user asks "what did I miss?" or "confess"

Confession Categories

1. Incomplete Work

Search for related files that may also need changes:

  • Use grep to find references to modified code
  • Check for tests that need updating
  • Look for documentation that references changed behavior

2. Untested Assumptions

Be honest about what was actually verified:

  • Did you run the code or just build it?
  • Were error paths tested?
  • What edge cases weren't considered?

3. Pattern Violations

Compare against existing codebase:

  • Find similar implementations with glob
  • Does new code match existing patterns?
  • Are there framework best practices being ignored?

4. Hidden Knowledge

Reveal things noticed but not mentioned:

  • Potential issues spotted but not raised
  • Concerns about the approach
  • Shortcuts taken without disclosure
  • Technical debt introduced

5. Cleanup Debt

Check for orphaned code:

  • Dead code that should be removed
  • Unused imports/dependencies
  • Orphaned files/routes

Workflow

  1. Gather Context

    # What files were recently modified?
    git diff --name-only HEAD~1
    
    # What functions/exports changed?
    git diff HEAD~1 --stat
    
  2. Search for References

    # Find all references to modified code
    grep -r "functionName" --include="*.ts" --include="*.tsx"
    
  3. Compare Patterns

    • Find similar files in the codebase
    • Compare implementation approaches
    • Note any inconsistencies
  4. Verification Check

    • List what was actually tested
    • List what was assumed to work
    • List what needs manual verification
  5. Disclose Everything Format confessions as:

    ## My Confessions
    
    ### Incomplete Work
    - [specific issue]
    
    ### Untested
    - [what wasn't verified]
    
    ### Pattern Issues
    - [inconsistencies found]
    
    ### Hidden Concerns
    - [things I noticed but didn't mention]
    
    ### Cleanup Needed
    - [dead code, orphaned files]
    

Key Principles

  1. Non-judgmental - Confessing is good, not shameful
  2. Tool-assisted - Use grep/glob, don't rely on memory
  3. Systematic - Cover all categories every time
  4. Honest - If uncertain, say so
  5. Actionable - Each confession should suggest a fix

Example Output

After implementing OAuth error handling:

My Confessions

Incomplete Work

  • Modified auth-config.ts but oauth2/authorize/page.tsx:173 still redirects to /error/oauth
  • proxy.ts:67 also references the old error route
  • lib/oauth-errors.ts has redirectToErrorPage() function still using old pattern

Untested

  • Only ran bun run build, didn't test actual OAuth error flow
  • Didn't verify error display on homepage with real error params

Pattern Issues

  • Homepage uses useSearchParams directly, but other pages extract it into a Suspense-wrapped component
  • See: oauth2/authorize/page.tsx, device/page.tsx for correct pattern

Hidden Concerns

  • The error page at /error/[type] is well-designed and actively used
  • Removing onAPIError may have been the wrong approach

Cleanup Needed

  • Decision needed: fully migrate to homepage errors OR keep /error/oauth route

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です