Skip to main content
在 Manus 中运行任何 Skill
一键导入
$pwd:
bitovi
GitHub 创作者资料

bitovi

按仓库查看 10 个 GitHub 仓库中的 73 个已收集 skills,并展示近似职业覆盖。

已收集 skills
73
仓库
10
职业领域
3
更新
2026-05-28
这里展示前 8 个仓库;完整仓库列表在下方继续。
仓库浏览

仓库与代表性 skills

#001
cascade-mcp
14 个 skills213更新于 2026-05-01
占该创作者 19%
cascade-analyze-figma-frame-mcp
平面设计师

Sub-skill: Analyze a single Figma design frame via the figma-frame-data MCP tool. Use this variant when local files are NOT available (e.g., GitHub cloud Copilot where curl is blocked). Calls figma-frame-data with a batchToken to retrieve image, structure, and context via MCP, then analyzes and returns the analysis as text. No filesystem reads needed — pure MCP.

2026-05-01
cascade-load-linked-resource-content
软件开发工程师

Sub-skill: Fetch raw content for one or more URLs via the extract-linked-resources MCP tool. Supports Jira issues, Confluence pages, Google Docs, and Google Sheets. Saves content to .temp/cascade/context/ and appends newly discovered links to to-load.md. Used as a building block by parent skills like generate-questions and write-jira-story.

2026-05-01
generate-behavior-questions
软件开发工程师

Generate frame-specific clarifying questions about ambiguous UI behaviors from a Jira epic and its linked Figma designs, Confluence pages, and Google Docs. Uses iterative content loading, parallel Figma frame analysis, and cross-content synthesis to produce targeted behavior questions organized by Figma frame.

2026-05-01
write-jira-story
项目管理专家

Write or refine a Jira story description with full context from Figma designs, Confluence docs, Google Docs, and parent epic. Gathers all linked resources, analyzes Figma frames, runs scope analysis, and writes a comprehensive story with User Story Statement, Scope Analysis, Acceptance Criteria (Gherkin), NFRs, and Developer Notes. Uses ☐/✅/❌/❓/💬 scope markers and flips ❓→💬 when answers are found.

2026-05-01
write-next-story-from-shell-story
项目管理专家

Write a full Jira story (User Story Statement, Scope Analysis, Acceptance Criteria in Gherkin, NFRs, Developer Notes) from the next unwritten shell story in a Jira epic. Loads only the Figma screens listed in that shell story, runs scope analysis anchored to its scope bullets, generates the full story description, creates a Jira story under the epic, adds blocker links for dependencies, and marks the shell story complete in the epic.

2026-05-01
write-shell-stories
项目管理专家

Write or refresh the Shell Stories section of a Jira epic by loading all linked context (Figma, Confluence, Google Docs), analyzing every Figma frame in parallel, running scope analysis, then generating a prioritized list of incremental shell story outlines grouped by user workflow. Preserves completion markers for already-written stories. Uses ☐/⏬/❌/❓ scope markers with SCREENS and DEPENDENCIES per story.

2026-05-01
cascade-analyze-feature-scope
项目管理专家

Sub-skill: Produce a Scope Analysis from frame analyses and all gathered context. This is the critical step that takes per-frame analyses + epic context + Confluence/Google Docs + Figma comments and categorizes every feature by scope (☐/✅/⏬/❌/❓/💬). Groups features by user workflow, not by screen. Supports self-healing ❓→💬 flipping on re-runs. Output drives all downstream work (questions, shell stories, story writing).

2026-04-29
cascade-analyze-figma-frame
平面设计师

Sub-skill: Analyze a single Figma design frame from local files. Reads image.png (vision), structure.xml (component tree), and context.md (comments/annotations) from .temp/cascade/figma/{fileKey}/frames/{name}/. Writes analysis.md. Designed to run as a subagent — no MCP tools needed, pure filesystem.

2026-04-29
当前展示该仓库 Top 8 / 14 个已收集 skills。
#002
convey
13 个 skills423更新于 2026-05-20
占该创作者 18%
debugging-skill
软件开发工程师

Always start a fresh browser session after any file change, walk through the full user flow, and monitor for errors before proceeding with further work.

2026-05-20
dev-environments
网络与计算机系统管理员

Set up and run different development service arrangements for testing specific features. Use when starting dev servers, testing Storybook addon (SB8 or SB10), testing Tailwind v3 vs v4, testing Astro, or when asked which services to run. Covers compound tasks, port assignments, and which services need each other.

2026-05-20
mode-button-behavior
网页开发工程师

Defines the interaction behavior of global mode buttons (Select, Insert) and component row buttons (Place, Replace). Use when modifying button states, colors, labels, tab visibility, or page interaction behavior. Must review and update these tables before making changes.

2026-05-20
naming-guide
软件开发工程师

Canonical naming for all Convey UI parts, features, and concepts. Reference when discussing, documenting, or writing code for any part of the app. Ensures consistent terminology across humans and AI agents.

2026-05-20
preview-classname-component
网页开发工程师

Build panel UI components that live-preview Tailwind className changes in the user's app via WebSocket. Use when creating any control (dropdown, scrubber, color picker, toggle, etc.) that lets users hover/scrub values before committing. Covers the preview/revert/stage lifecycle, the onHover/onLeave prop contract, and the focus-trap pattern that prevents preview leaks.

2026-03-25
debug-e2e-test
软件质量保证分析师与测试员

Debug and fix failing Playwright E2E tests. Use when tests fail, when asked to fix failing tests, or when investigating test failures. Analyzes test output, screenshots, error context, and uses Playwright MCP to identify root causes.

2026-03-15
tailwind-vocabulary
网页开发工程师

Canonical terminology for Tailwind CSS concepts used throughout the codebase. Reference this skill to ensure consistent naming in code, docs, and conversation.

2026-03-15
create-react-modlet
软件开发工程师

Create React components or hooks following the modlet pattern in this project. Use when creating any new component or hook in panel/src/components/. Modlets are self-contained folders with index.ts, implementation, tests, and optional types.

2026-03-14
当前展示该仓库 Top 8 / 13 个已收集 skills。
#003
convey-app-template
12 个 skills10更新于 2026-05-21
占该创作者 16%
init-mock-app
软件开发工程师

Initialize a minimal hello-world mock-app with React, Vite, TypeScript, Tailwind CSS, React Router, and MSW. Use when scaffolding a new mock-app from scratch, bootstrapping a project skeleton, or starting a fresh prototype. Produces a working app with routing, mock API support, and a hello-world landing page.

2026-05-21
component-registry
软件开发工程师

Track and manage reusable UI components and patterns in the mock-app. Maintains an inventory of extracted components and unextracted patterns to promote incremental refactoring and prevent code duplication.

2026-03-27
implement-feature
软件开发工程师

End-to-end workflow for implementing a new feature in the mock-app, ensuring data model alignment, sample data, UI/UX consistency, component reuse, and automated verification with Playwright MCP.

2026-03-27
create-skill
软件开发工程师

Create new Agent Skills for this project. Use when asked to create a skill, document a workflow, or teach Copilot a new capability. Skills are stored in .github/skills/ and can include instructions, scripts, examples, and resources.

2026-03-06
debug-e2e-test
软件质量保证分析师与测试员

Debug and fix failing Playwright E2E tests. Use when tests fail, when asked to fix failing tests, or when investigating test failures. Analyzes test output, screenshots, error context, and uses Playwright MCP to identify root causes.

2026-03-06
debugging-skill
软件开发工程师

Always start a fresh browser session after any file change, walk through the full user flow, and monitor for errors before proceeding with further work.

2026-03-06
document-feature
项目管理专家

Create comprehensive feature requirement documents for the WCU Mosquito Surveillance Web Application. Use when asked to document a feature, write feature requirements, or create feature specifications from the roadmap. Includes user stories, functional requirements, data model review, workflows, and edge cases.

2026-03-06
extract-ui-component
网页开发工程师

Extract reusable UI components from inline patterns. Covers component design, TypeScript props, Storybook stories, refactoring strategy, and best practices for creating shared UI primitives.

2026-03-06
当前展示该仓库 Top 8 / 12 个已收集 skills。
#004
carton-case-management
11 个 skills15更新于 2026-05-14
占该创作者 15%
cascade-post-design-questions-to-figma
网页与数字界面设计师

Post generated design behavior questions as comments on Figma frames. Takes questions organized by frame (from generate-behavior-questions skill) and posts each question as a comment pinned to the correct Figma frame using the figma-post-comment MCP tool.

2026-05-14
generate-behavior-questions
项目管理专家

Generate frame-specific clarifying questions about ambiguous UI behaviors from a Jira epic and its linked Figma designs, Confluence pages, and Google Docs. Uses iterative content loading, parallel Figma frame analysis, and cross-content synthesis to produce targeted behavior questions organized by Figma frame.

2026-05-14
create-skill
软件开发工程师

Create new Agent Skills for this project. Use when asked to create a skill, document a workflow, or teach the agent a new capability. Skills are stored in .claude/skills/ and can include instructions, scripts, examples, and resources.

2026-05-14
figma-connect-component
未分类

Generate Figma Code Connect mappings that link React components to their Figma counterparts. Use when a component exists in code and needs a Code Connect file so Figma shows real code snippets in Dev Mode. Also triggers on phrases like "connect this component to Figma", "generate Code Connect", "publish to Figma", "add figma.connect for this component", "link this to Figma Dev Mode".

2026-04-21
component-reuse
未分类

Ensure existing UI components are reused before creating new ones. Use when implementing any UI from Figma designs, tickets, or mockups. Requires a component audit to search the codebase before creating new components. If a component doesn't exist, delegates to figma-implement-component skill.

2026-04-13
cross-package-types
软件开发工程师

Manage TypeScript type flow between @carton/shared, @carton/server, and @carton/client packages. Use when adding Prisma models, creating tRPC procedures, importing types in components, or resolving circular dependency issues between packages.

2026-04-13
figma-component-sync
网页与数字界面设计师

Check a React component against its Figma design source and identify differences. Use when reviewing component implementations, syncing designs, auditing visual accuracy, or updating components to match new Figma designs.

2026-04-13
figma-connect-shadcn
网页开发工程师

Connect shadcn/ui components to their Figma design system counterparts using Code Connect.

2026-04-13
当前展示该仓库 Top 8 / 11 个已收集 skills。
#005
ai-enablement-prompts
10 个 skills11261更新于 2026-05-04
占该创作者 14%
figma-explore
软件开发工程师

Explore a Figma file to discover all pages, components, and component sets using the Figma REST API. Use when you need to list components in a Figma file, find component node IDs for Code Connect, or understand the structure of a design file.

2026-05-04
figma-implement-component
软件开发工程师

Implement React components from Figma designs. Use after figma-design-react has analyzed the design, or directly with a Figma URL to run analysis and implementation in one shot. Delegates to create-react-modlet for folder structure, then adds Figma-specific implementation, stories for each variant, and README with design context. Also triggers on phrases like "build this component from Figma", "implement this design", "create a component from this Figma URL", "turn this Figma into code".

2026-05-04
figma-component-sync
未分类

Check a React component against its Figma design source and identify differences. Use when reviewing component implementations, syncing designs, auditing visual accuracy, or updating components to match new Figma designs.

2026-05-04
figma-connect-component
软件开发工程师

Generate Figma Code Connect mappings that link React components to their Figma counterparts. Use when a component exists in code and needs a Code Connect file so Figma shows real code snippets in Dev Mode. Also triggers on phrases like "connect this component to Figma", "generate Code Connect", "publish to Figma", "add figma.connect for this component", "link this to Figma Dev Mode".

2026-05-04
figma-design-react
未分类

Design React components from Figma files. Use when given a Figma URL to analyze a design and propose React component architecture, props API, and variant handling. Outputs design analysis and suggested API - does not build components. Also triggers on phrases like "analyze this Figma", "what props should this component have", "design the API for this", "plan this component from Figma".

2026-05-04
create-skill-claude
软件开发工程师

Use this skill when the user asks to "create a skill", "add a skill", "make a new skill", "build a skill", or wants to automate a repeated workflow into a reusable prompt. Guides creating a properly structured Claude Code skill.

2026-04-25
create-skill-copilot
软件开发工程师

Create new Agent Skills for this project. Use when asked to create a skill, document a workflow, or teach Copilot a new capability. Skills are stored in .github/skills/ and can include instructions, scripts, examples, and resources.

2026-04-25
figma-design-react
软件开发工程师

Design React components from Figma files. Use when given a Figma URL to analyze a design and propose React component architecture, props API, and variant handling. Outputs design analysis and suggested API - does not build components.

2026-03-05
当前展示该仓库 Top 8 / 10 个已收集 skills。
#006
context-generation-mvp
6 个 skills00更新于 2026-01-02
占该创作者 8.2%
#007
figma-design-to-code-webinar
3 个 skills00更新于 2026-05-28
占该创作者 4.1%
#008
2026-ai-enabled-interview
2 个 skills10更新于 2026-03-20
占该创作者 2.7%
已展示 10 / 10 个仓库
已展示全部仓库