skills/pencil-skills/pencil-mcp-search-all-unique-properties/SKILL.md
Search and list all unique values for specific properties (fills, fonts, spacing) across nodes in a Pencil .pen file via the search_all_unique_properties MCP tool. Use when the user explicitly mentions Pencil and needs to audit design consistency, find all colors or font sizes used, or identify inconsistent styles.
npx skillsauth add teachingai/agent-skills pencil-mcp-search-all-unique-propertiesInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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 (中文关键词): 搜索属性, 设计审计, 查找使用, 唯一值, 属性检查, 样式一致性
development
Guidance for Next.js using the official docs at nextjs.org/docs. Use when the user needs Next.js concepts, configuration, routing, data fetching, or API reference details.
tools
Provides comprehensive guidance for Flask framework including routing, templates, forms, database integration, extensions, and deployment. Use when the user asks about Flask, needs to create web applications, implement routes, or build Python web services.
development
Provides comprehensive guidance for FastAPI framework including routing, request validation, dependency injection, async operations, OpenAPI documentation, and database integration. Use when the user asks about FastAPI, needs to create REST APIs, or build high-performance Python web services.
development
Provides comprehensive guidance for Django framework including models, views, templates, forms, admin, REST framework, and deployment. Use when the user asks about Django, needs to create web applications, implement models and views, or build Django REST APIs.