From partme-ai-full-stack-skills
Retrieves detailed metadata for Stitch projects including design theme, fonts, device type, and screen instances. Use before generating new screens or to verify project existence.
npx claudepluginhub partme-ai/full-stack-skills --plugin t2ui-skillsThis skill is limited to using the following tools:
**CRITICAL PREREQUISITE:**
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
CRITICAL PREREQUISITE: You must ONLY use this skill when the user EXPLICITLY mentions "Stitch".
Do NOT use this skill if:
projectId and screenId and your goal is to get screen details or code. Use stitch-mcp-get-screen directly instead.This skill retrieves the detailed metadata of a specific Stitch project.
Invoke this skill when you need to know the context of a project (e.g., its default theme, device type) before generating new screens, or to verify project existence.
The skill expects you to extract the following information from the user request:
name (required): The resource name of the project. Format: projects/{project_id}.If the user provides a resource path or URL, use the following rules to extract the project name:
Format: web application/stitch/projects/{projectId}
projectId and construct the name as projects/{projectId}.Format: projects/{projectId}
Format: https://stitch.withgoogle.com/projects/{projectId}
projectId and construct the name as projects/{projectId}.Example: Input "Describe web application/stitch/projects/12345", Call get_project(name="projects/12345").
Returns a Project object including:
name, title, createTime, updateTimedesignTheme: Detailed theme settings.screenInstances: List of screen instances currently in the project.User Input: "What is the theme of project 'projects/123'?"
Agent Action:
get_project tool with arguments {"name": "projects/123"}.