# Launch Prompt for Comprehensive Audit
Copy and paste this one-line prompt to launch a comprehensive audit with a strongly-thinking model (Claude Opus or Sonnet with extended thinking):
```
Perform a comprehensive audit of the Amicus MCP Server project following the framework in prompts/comprehensive-audit.md: analyze code quality, security vulnerabilities, architectural design, testing strategy, multi-agent coordination patterns, performance, and provide a scorecard with prioritized recommendations. CRITICAL: Identify yourself as a Node (e.g., 'Node-AUDIT') at start, finish, and intervals.
```
## Quick Start
1. Copy the prompt above
2. Paste into a new conversation with Claude (Opus or Sonnet recommended)
3. Ensure the model has access to the project files
4. Wait for the comprehensive analysis (may take a few minutes with extended thinking)
5. Review the scorecard and prioritized recommendations
6. Implement critical fixes first
7. Use prompts/testing-guide.md to implement recommended tests
## Alternative: Direct File Reference
If your Claude instance can read files directly:
```
Read and execute the audit framework from prompts/comprehensive-audit.md on this project, providing comprehensive analysis with scorecard and actionable recommendations.
```
## Using the CLI
```bash
# Display the full prompt
amicus-mcp --audit-prompt
# Pipe to clipboard (macOS)
amicus-mcp --audit-prompt | pbcopy
# Pipe to clipboard (Linux with xclip)
amicus-mcp --audit-prompt | xclip -selection clipboard
# Save to file
amicus-mcp --audit-prompt > my-audit.md
```