Analyzes project structure, technology stack, patterns, and conventions. Use when starting development tasks, reviewing code, or understanding an existing codebase.
Analyzes project structure, tech stack, and coding patterns before development. Use when starting work on existing codebases to understand conventions and architecture.
/plugin marketplace add FunkyOz/funkyoz-plugins/plugin install software-engineer@funkyoz-pluginsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
references/patterns.mdThis skill enables comprehensive analysis of software projects to understand their structure, patterns, and conventions before making changes.
Directory Layout
Key Directories to Look For
src/ # Source code
lib/ # Library code
app/ # Application code
tests/ # Test files
docs/ # Documentation
config/ # Configuration
scripts/ # Build/utility scripts
public/ # Static assets
dist/ # Build output
Package Managers & Dependencies
| File | Technology |
|---|---|
package.json | Node.js/JavaScript |
composer.json | PHP |
requirements.txt, pyproject.toml | Python |
Gemfile | Ruby |
Cargo.toml | Rust |
go.mod | Go |
pom.xml, build.gradle | Java |
Frameworks
Build Tools
Coding Style
.editorconfig.eslintrc, .prettierrc, phpcs.xml)Architecture Patterns
Design Patterns in Use
Test Framework Detection
| Framework | Language |
|---|---|
| Jest, Mocha, Vitest | JavaScript |
| PHPUnit, Pest | PHP |
| pytest, unittest | Python |
| RSpec, Minitest | Ruby |
| JUnit | Java |
Test Organization
README Structure
Code Documentation
When analyzing a project, report findings in this format:
## Project Analysis Report
### Overview
- **Type**: [Web App / API / Library / CLI / etc.]
- **Primary Language**: [Language + version]
- **Framework**: [Framework + version]
### Structure
[Description of directory organization]
### Dependencies
- **Runtime**: [key dependencies]
- **Development**: [key dev dependencies]
### Patterns & Conventions
#### Coding Style
- Naming: [convention]
- Formatting: [tool/standard]
- Linting: [tool/rules]
#### Architecture
- Pattern: [architecture pattern]
- Key abstractions: [list]
#### Testing
- Framework: [test framework]
- Coverage: [if measurable]
- Organization: [how tests are organized]
### Recommendations
[Recommendations for maintaining consistency]
When project is new/empty, recommend:
After analysis, use findings to:
See references/patterns.md for detailed pattern examples.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.