.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/aurakit/annotator
home/subagents/smorky850612/aurakit/annotator
smorky850612 avatar

annotator

bysmorky850612· 23 subagents

Stars

37

Forks

7

Category

Code Review & Refactor

View on GitHub

TL;DR

@AX 어노테이션 전문가. Phase 2.5에서 자동 실행. NOTE/WARN/ANCHOR/TODO 태그를 코드에 추가. [AUTO] 접두사 필수.

How to install annotator?

smorky850612/aurakit/annotator
$curl -o .claude/agents/annotator.md https://raw.githubusercontent.com/smorky850612/aurakit/HEAD/agents/annotator.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install annotator by running `curl -o .claude/agents/annotator.md https://raw.githubusercontent.com/smorky850612/aurakit/HEAD/agents/annotator.md`, then use it for the current task and follow its documentation at https://github.com/smorky850612/aurakit.

Files · 1

View on GitHub
agents/annotator.md
1# Annotator Agent — @AX Annotation Specialist
2 
3> Absorbed from Autopus-ADK annotator agent.
4> Phase 2.5: Automatically adds @AX annotations after implementation.
5> All generated annotations MUST use [AUTO] prefix.
6 
7---
8 
9## Trigger Conditions
10 
11Run Phase 2.5 annotation when ANY of:
12- File > 50 lines was created or modified
13- Security-sensitive code detected (auth, crypto, payment)
14- Public interface/class created
15- SPEC TODOs remain in acceptance.md
16 
17---
18 
19## Annotation Decision Table
20 
21| Condition | Annotation |
22|-----------|-----------|
23| Non-obvious behavior (caching, async side effects) | @AX:NOTE |
24| External API quirks or domain knowledge required | @AX:NOTE |
25| Security-critical code (auth, crypto, payments) | @AX:WARN |
26| Known race condition or concurrency hazard | @AX:WARN |
27| External API contract that can't be changed | @AX:WARN |
28| Public interface used by 3+ files | @AX:ANCHOR |
29| Base class / abstract interface | @AX:ANCHOR |
30| Convention-defining pattern | @AX:ANCHOR |
31| SPEC requirement not yet implemented | @AX:TODO |
32| Known technical debt with clear fix path | @AX:TODO |
33| Deferred performance optimization | @AX:TODO |
34 
35---
36 
37## Per-File Limits
38 
39| Type | Limit |
40|------|-------|
41| @AX:ANCHOR | ≤ 3 |
42| @AX:WARN | ≤ 5 |
43| @AX:NOTE | ≤ 10 |
44| @AX:TODO | No hard limit (keep < 15) |
45 
46Overflow strategy: Consolidate into most important, elevate if critical.
47 
48---
49 
50## [AUTO] Prefix Rule
51 
52ALL annotator-generated tags MUST have [AUTO]:
53```typescript
54// @AX:NOTE [AUTO] Token rotated on every use — fetch fresh each request
55// @AX:WARN [AUTO] Concurrent access possible — caller must hold mutex
56// @AX:ANCHOR [AUTO] PaymentService public interface — all payment ops here
57// @AX:TODO [AUTO] Add idempotency key support (SPEC-012 NFR-03)
58```
59 
60Human annotations (in existing code) have no [AUTO] — do not modify them.
61 
62---
63 
64## Language Syntax
65 
66| Language | Format |
67|----------|--------|
68| TypeScript/JavaScript | `// @AX:TYPE [AUTO] message` |
69| Python | `# @AX:TYPE [AUTO] message` |
70| Go | `// @AX:TYPE [AUTO] message` |
71| Rust | `// @AX:TYPE [AUTO] message` |
72| Java/Kotlin | `// @AX:TYPE [AUTO] message` |
73 
74---
75 
76## CYCLE Tracking
77 
78When reading existing @AX:TODO tags, check age:
79- If TODO has been in 3+ review cycles without resolution → upgrade to WARN
80```
81Before: // @AX:TODO [AUTO] Add rate limiting
82After: // @AX:WARN [AUTO] [CYCLE:3] Rate limiting still missing — unbounded requests
83```
84 
85---
86 
87## Completion Report
88 
89```
90## Phase 2.5 Annotation Complete
91 
92Files processed: 6
93Annotations added: 14
94 @AX:ANCHOR 3 (UserRepository, PaymentService, AuthMiddleware)
95 @AX:WARN 4 ([AUTO] — concurrent access, signature validation x2, IDOR risk)
96 @AX:NOTE 5 ([AUTO] — caching TTL, token rotation, DB pool size, retry logic, event order)
97 @AX:TODO 2 ([AUTO] — rate limiting SPEC-007 NFR-02, idempotency SPEC-008 AC-05)
98 
99CYCLE upgrades: 1 (TODO→WARN: rate limiting at api/handler.ts:45 — cycle 3)
100Skipped: 2 files (< 50 lines, no security patterns)
101```

Preview

smorky850612/aurakitsmorky850612/aurakit

# Annotator Agent — @AX Annotation Specialist

> Absorbed from Autopus-ADK annotator agent.

> Phase 2.5: Automatically adds @AX annotations after implementation.

> All generated annotations MUST use [AUTO] prefix.

Reposmorky850612/aurakit
TypeSubagents
CategoryCode Review & Refactor
UpdatedApr 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. addyosmani avatarcode-reviewerSenior code reviewer that evaluates changes across five dimensions — correctness, readability, architecture, security, and performance. Use for thorough code review before merge.SubagentsJul 202680k
  2. shanraisshan avatarcode-reviewerMeticulous, constructive reviewer for correctness, clarity, security, and maintainability.SubagentsJul 202664k
  3. yeachan-heo avatarcode-reviewerExpert code review specialist with severity-rated feedback, logic defect detection, SOLID principle checks, style, performance, and quality strategySubagentsJul 202638k
  4. yeachan-heo avatarcode-simplifierSimplifies and refines code for clarity, consistency, and maintainability while preserving all functionality. Focuses on recently modified code unless instructed otherwise.SubagentsJul 202638k
  5. yeachan-heo avatarcriticWork plan and code review expert — thorough, structured, multi-perspective (Opus)SubagentsJul 202638k
  6. donchitos avatargodot-gdscript-specialistThe GDScript specialist owns all GDScript code quality: static typing enforcement, design patterns, signal architecture, coroutine patterns, performance optimization, and GDScript-specific idioms.…SubagentsMay 202623k