project

Know any codebase in 10 seconds. Scripts, tech stack, structure.

allowed_tools: mcp__project__get_session_guide, mcp__project__get_project_info, mcp__project__get_scripts, mcp__project__get_quickstart, mcp__project__get_tech_stack, mcp__project__get_structure

$ 安裝

git clone https://github.com/Technikhighknee/agent-workbench /tmp/agent-workbench && cp -r /tmp/agent-workbench/.claude/skills/project ~/.claude/skills/agent-workbench

// tip: Run this command in your terminal to install the skill


name: project description: "Know any codebase in 10 seconds. Scripts, tech stack, structure." allowed-tools: mcp__project__get_session_guide, mcp__project__get_project_info, mcp__project__get_scripts, mcp__project__get_quickstart, mcp__project__get_tech_stack, mcp__project__get_structure

project

Instant orientation. Know what you're working with before touching code.

First: get_session_guide

At session start, ALWAYS:

get_session_guide({})

This teaches you all the MCP tools and when to use them.

Why This Wins

The ProblemBuilt-in Failureproject Solution
What is this project?Read package.json manuallyget_project_info structured data
How to build/test?Search through scriptsget_quickstart gives commands
What tech?Analyze dependenciesget_tech_stack detects frameworks
Where's the code?ls and guessget_structure maps directories

Quick Reference

TaskTool
Learn all toolsget_session_guide
Build/test commandsget_quickstart
Tech stackget_tech_stack
Directory layoutget_structure
Project metadataget_project_info
Available scriptsget_scripts

Recommended Flow

New Codebase

get_session_guide({})  // Learn tools
get_quickstart({})     // How to build/test
get_tech_stack({})     // What frameworks
get_structure({})      // Where's the code

Quick Orientation

get_project_info({})   // Type, version, workspaces
get_scripts({})        // Available commands

Auto-Detection

  • Project root: Found from any subdirectory
  • Type: npm, cargo, python, go
  • Monorepo: Workspaces detected automatically
  • Tech: React, Vue, Next.js, Vite, etc.

Works from any subdirectory

Auto-detects project root.