Comprehensive tech stack detection, framework identification, dependency analysis, and project.json generation. Use when analyzing project structure, detecting frameworks, identifying dependencies, discovering AI stack components, detecting databases, or when user mentions project detection, tech stack analysis, framework discovery, or project.json generation.
/plugin marketplace add vanman2024/dev-lifecycle-marketplace/plugin install foundation@dev-lifecycle-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
examples/advanced-detection.mdexamples/ai-stack-discovery.mdexamples/basic-usage.mdexamples/database-analysis.mdexamples/project-json-generation.mdscripts/detect-ai-stack.shscripts/detect-database.shscripts/detect-dependencies.shscripts/detect-frameworks.shscripts/generate-project-json.shscripts/validate-detection.shtemplates/ai-stack-patterns.jsontemplates/database-patterns.jsontemplates/dependency-patterns.jsontemplates/detection-report.mdtemplates/framework-patterns.jsontemplates/project-json-schema.jsontemplates/project.json.templateCRITICAL: The description field above controls when Claude auto-loads this skill.
Provides comprehensive project analysis capabilities including framework detection, dependency analysis, AI stack identification, database detection, and automatic .claude/project.json generation.
scripts/detect-frameworks.sh <project-path> to identify all frameworksscripts/detect-dependencies.sh <project-path> to analyze all dependenciesscripts/detect-ai-stack.sh <project-path> to discover AI componentsscripts/detect-database.sh <project-path> to identify databasesscripts/generate-project-json.sh <project-path> to create complete project.json.claude/project.json with complete tech stack informationSee examples/ directory for detailed usage examples:
basic-usage.md - Simple project detection workflowadvanced-detection.md - Complex multi-framework projectsai-stack-discovery.md - AI stack identification patternsdatabase-analysis.md - Database and ORM detectionproject-json-generation.md - Complete project.json generationAll detection scripts output JSON in this format:
{
"detected": true,
"confidence": "high|medium|low",
"type": "framework|database|ai-stack",
"name": "Framework Name",
"version": "1.0.0",
"files": ["list", "of", "evidence", "files"],
"metadata": {}
}
This skill is used by:
foundation:init command - Initial project analysisfoundation:analyze command - Deep project structure analysisPurpose: Comprehensive project analysis and tech stack detection Used by: All agents requiring project context and framework information
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.