verify-patterns

Solid

Verify AI agent patterns including loop safety, retry limits, tool consistency, context size, and graph cycle analysis. Use when asked to "verify agent patterns", "check loops", "verify tools", or "check retry limits".

Code & Development 39 stars 5 forks Updated 4 days ago MIT

Install

View on GitHub

Quality Score: 86/100

Stars 20%
53
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Agent Pattern Verification ## Purpose Verify AI agent code for common anti-patterns that can cause infinite loops, runaway retries, tool mismatches, and context overflow. All analysis happens locally. ## When to Use Trigger this skill when the user asks to: - "verify agent patterns" - "check agent loops" - "verify tools" - "check retry limits" - "verify agent safety" > **Note:** For full verification including security, quality, and language-specific checks, tell the user to say **"verify agent"**. ## Process ### Step 1: Detect Agent Framework Identify the agent framework by checking imports in Python/TypeScript files: | Import Pattern | Framework | |----------------|-----------| | `from langgraph` or `import langgraph` | LangGraph | | `from crewai` or `import crewai` | CrewAI | | `from autogen` or `import autogen` | AutoGen | | `from langchain` or `import langchain` | LangChain | | Direct `openai`/`anthropic` SDK only | Custom | Also check for framework config files: `langgraph.json`, `crew.yaml`. ### Step 2: Locate Agent Files Find files to analyze: **Priority files:** - `graph.py`, `graph.ts` - Agent workflow definitions - `tools.py`, `tools.ts`, `tools/*.py`, `tools/*.ts` - Tool implementations - `state.py`, `state.ts` - State schemas - `prompts.py`, `prompts/*.md`, `system.md` - Prompt templates - `agent.py`, `agent.ts` - Main agent logic **Directories to check:** - `src/agent/`, `agent/`, `src/`, project root - `lib/`, `app/`, `packages/` **Exclude from...

Details

Author
Aurite-ai
Repository
Aurite-ai/agent-verifier
Created
2 months ago
Last Updated
4 days ago
Language
N/A
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category