Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
From team-shinchan
Analyzes code structure, dependencies, bugs, performance bottlenecks, and architecture via Opus subagent. Provides state summaries, issues, solutions, and file/line references.
npx claudepluginhub seokan-jeong/team-shinchan --plugin team-shinchanHow this skill is triggered — by the user, by Claude, or both
Slash command
/team-shinchan:analyzeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
If args is empty or only whitespace:
Ask user: "What would you like to analyze?"
STOP and wait for user response
If args length > 2000 characters:
Truncate to 2000 characters
Warn user: "Request was truncated to 2000 characters"
Do not read further. Execute this Task NOW:
Task(
subagent_type="team-shinchan:hiroshi",
model="opus",
prompt=`/team-shinchan:analyze has been invoked.
## Deep Analysis Request
Perform the following types of analysis:
| Type | Analysis Content |
|------|----------|
| Code Analysis | Structure, dependencies, complexity |
| Bug Analysis | Error cause, stack trace, reproduction conditions |
| Performance Analysis | Bottlenecks, memory, optimization strategies |
| Architecture Analysis | Overall structure, improvements, tradeoffs |
## Result Requirements
- Current state summary
- Issues discovered
- Recommended solutions
- Related file and line references
User request: ${args || '(Please describe what to analyze)'}
`
)
STOP HERE. The above Task handles everything.