askill
projects

projectsSafety 95Repository

Manage development projects using the dude MCP server. List, create, update projects. Get full project context with issues and specifications. Search for projects. Use when working with project organization, project hierarchies, starting work on a codebase, or needing project-level context.

0 stars
1.2k downloads
Updated 2/25/2026

Package Files

Loading files...
SKILL.md

Dude Projects - Project Management

Manage development projects via the dude: MCP tools.

Quick Start

dude:list_projects              - List all projects
dude:get_project_context        - Full project with issues/specs
dude:search { "entityTypes": ["project"] }  - Find projects

Project Operations

Listing Projects

ToolDescription
dude:list_projectsList all projects or filter by parent

Parameters:

  • parentUuid (optional): Filter to children of parent project

Getting Project Details

ToolDescription
dude:get_projectGet single project details
dude:get_project_contextGet project with ALL issues and specs

get_project Parameters:

  • uuid (required): Project UUID

get_project_context Parameters:

  • uuid (required): Project UUID
  • includeSubprojects (optional): Include child projects (default: false)

Creating Projects

ToolDescription
dude:create_projectCreate new project

Parameters:

  • name (required): Project name
  • directory (optional): Project directory path
  • parent_project_uuid (optional): Parent project for nesting

Updating Projects

ToolDescription
dude:update_projectUpdate existing project

Parameters:

  • uuid (required): Project UUID
  • name (optional): New name
  • directory (optional): New directory path
  • parent_project_uuid (optional, nullable): New parent (null for top-level)
  • active (optional): Set active status (1 = active, 0 = inactive)

Archiving Projects

To archive a project (soft delete), set the active flag to 0:

dude:update_project { "uuid": "...", "active": 0 }

To reactivate:

dude:update_project { "uuid": "...", "active": 1 }

Search for Projects

Semantic Search

dude:search {
  "query": "authentication service",
  "entityTypes": ["project"],
  "limit": 5
}

Parameters:

  • query (required): Natural language search query
  • limit (optional): Max results (default: 10)
  • threshold (optional): Min similarity 0-1 (default: 0.3)
  • entityTypes (optional): Filter to ["project"]
  • projectUuid (optional): Scope to specific project

Keyword Search

dude:search_text { "query": "auth" }

Parameters:

  • query (required): Text to search for

Common Workflows

Starting Work on a Codebase

  1. dude:list_projects - Find the project UUID
  2. dude:get_project_context - Load full context
  3. Begin coding with awareness of existing issues/specs

Organizing Projects

dude:create_project { "name": "Frontend", "parent_project_uuid": "parent-uuid" }

Related Skills

  • dude:issues: Create and manage issues within projects
  • dude:specifications: Create and manage specifications within projects

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

78/100Analyzed 2/20/2026

Well-structured skill document for managing projects via the dude MCP server. Covers all CRUD operations, search functionality, and common workflows with clear examples and parameter descriptions. The skill is tool-specific but comprehensively documented. Minor issue: the 'security' tag seems misaligned with project management functionality. Good actionability and clarity, moderate reusability due to tool dependency."

95
90
50
85
85

Metadata

Licenseunknown
Version-
Updated2/25/2026
Publisherfingerskier

Tags

security