一键导入
linear
Use when managing Linear issues, projects, cycles, or team workflows. Triggers on creating, updating, triaging, or querying Linear tickets.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when managing Linear issues, projects, cycles, or team workflows. Triggers on creating, updating, triaging, or querying Linear tickets.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when the user asks to copy drafted content to the clipboard, copy it again, prepare something for LinkedIn, paste rich text into a social composer, or stage plain text for X. This skill tells Pi when to use the rich clipboard extension and which format/target to choose.
This skill should be used when the user asks to "dump this conversation", "save this conversation to markdown", "output this conversation to a markdown file", "export this chat", "log this session to a file", "save this chat log", or similar. Produces a structured, readable capture of the current Pi conversation - user requests verbatim, assistant responses in full, commands plus key output inline, decisions preserved - not a brief summary. Distinct from mischief-managed, which writes a compact Obsidian session note.
Safely back up local folders to private Hugging Face Buckets using the installed hf CLI and the hf-buckets Pi extension. Use when the user asks to upload/archive/back up local data, training data, agent traces, model artifacts, checkpoints, corpora, or folders to Hugging Face storage, especially when privacy, buckets, quarantine, resume, monitoring, or deleting local copies is involved.
This skill should be used when the user asks to "jot this down", "add this to my daily note", "save this to today's note", "log this to obsidian", "note this down", "put this in my daily", or invokes /jot. Quickly appends any content - insights, thoughts, todos, links, ideas - to today's daily note in the configured Obsidian vault.
Perform a high-signal security code review of pending git/PR branch changes, focusing only on newly introduced HIGH/MEDIUM exploitable vulnerabilities and filtering false positives. Use when asked to security-review a branch, PR, diff, or pending changes.
Set up and run an autonomous experiment loop for any optimization target. Gathers what to optimize, then starts the loop immediately. Use when asked to "run autoresearch", "optimize X in a loop", "set up autoresearch for X", or "start experiments".
| name | linear |
| description | Use when managing Linear issues, projects, cycles, or team workflows. Triggers on creating, updating, triaging, or querying Linear tickets. |
Structured workflow for managing issues, projects, and team workflows in Linear via the Linear MCP server (OAuth-based, remote).
Follow these steps in order.
Confirm the user's goal: issue creation, triage, sprint planning, status update, documentation, workload review, etc. Identify team, project, priority, labels, cycle, and due dates as needed.
Always query before mutating. Build context with read operations:
| Goal | Tool |
|---|---|
| Find issues | list_issues (filter by team, assignee, state, label, project, priority) |
| My open work | list_issues with assignee: "me" |
| Issue details | get_issue with issue identifier (e.g., CON-435) |
| Team lookup | list_teams |
| Project lookup | list_projects, get_project |
| Available states | list_issue_statuses (requires team) |
| Available labels | list_issue_labels (optional team filter) |
| Cycles | list_cycles |
| Documents | list_documents, get_document, search_documentation |
| Comments | list_comments (requires issueId) |
| Users | list_users, get_user |
| Initiatives | list_initiatives, get_initiative |
| Milestones | list_milestones (requires project) |
| Status updates | get_status_updates |
Use save_issue for both creating and updating:
Creating: title and team are required. Omit id.
save_issue(title: "...", team: "Content", description: "...", priority: 3, labels: ["Bug"])
Updating: Pass id with the issue identifier.
save_issue(id: "CON-435", state: "In Progress", assignee: "me")
Other mutation tools:
save_comment - add comments to issuessave_project, save_initiative, save_milestone - project managementsave_status_update - post status updatescreate_issue_label - create new labelscreate_document, update_document - Linear docscreate_attachment - attach files to issuesAfter mutations, report what changed. Call out remaining gaps, blockers, or suggested next actions.
| Value | Meaning |
|---|---|
| 0 | None |
| 1 | Urgent |
| 2 | High |
| 3 | Normal |
| 4 | Low |
assignee: "me" for personal issue queriesquery parameter for text search across issue titles and descriptionslist_issues with state: "In Progress" finds active workcreatedAt: "-P7D" for last 7 dayslinks field on save_issue: [{url, title}]blocks, blockedBy, relatedTo) are append-only on save_issue