From partme-ai-full-stack-skills
Searches Pencil .pen files for unique property values (fills, fonts, spacing) across nodes via MCP tool. Audits design consistency, lists colors/font sizes, identifies style inconsistencies when Pencil is mentioned.
npx claudepluginhub partme-ai/full-stack-skills --plugin t2ui-skillsThis skill uses the workspace's default tool permissions.
This skill is designed to call the Pencil MCP tool:
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.
This skill is designed to call the Pencil MCP tool:
search_all_unique_propertiesIf your client namespaces MCP tools, it may appear as mcp__pencil__search_all_unique_properties.
Even if a trigger phrase matches, you must verify the user's intent:
If the answer is NO, do NOT use this skill.
CRITICAL PREREQUISITE: You must ONLY use this skill when the user EXPLICITLY mentions "Pencil".
ALWAYS use this skill when:
Trigger phrases include:
filePath (string, optional).parents (array, required): IDs of parent nodes to search within.properties (array, required): List of property names to search (e.g., ["fills", "typography"]).search_all_unique_properties(parents=[...], properties=["fills"]).Audit all fill colors used in the document to identify inconsistencies.
{
"properties": ["fills"]
}
Find all font families used within a specific frame (e.g., a card or section).
{
"parents": ["frame:card-123"],
"properties": ["fontFamily"]
}
Search for fills, strokes, and font sizes across multiple key sections to generate a style report.
{
"parents": ["section:header", "section:footer"],
"properties": ["fills", "strokes", "fontSize", "fontFamily"]
}
English keywords: search properties, design audit, find usage, unique values, property check, style consistency
Chinese keywords (中文关键词): 搜索属性, 设计审计, 查找使用, 唯一值, 属性检查, 样式一致性