用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/twanahc/claude-linear-skill --skill linear-propose命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use when working with Linear issues — browse backlog, triage, plan implementations, propose improvements, and execute. Orchestrates subagents for context-efficient issue processing.
Execute an implementation plan for a single Linear issue — write code, run checks, and update Linear with results.
Create a detailed implementation plan for a single Linear issue by analyzing the issue and the project codebase.
基于 SOC 职业分类
正在显示 SKILL.md
| name | linear-propose |
| description | Analyze codebase to propose improvements, features, and fixes as Linear issues. |
Explore the project codebase to identify improvements, missing features, bugs, and tech debt. Present proposals to the user and create approved ones as Linear issues.
bun ~/.claude/skills/linear/scripts/linear-api.ts <command>
Check if the user specified a focus area (e.g., "performance", "UX", "security", a specific directory). If not, do a broad sweep.
Systematically scan:
package.json, directory layout, config files, routingUse Glob, Grep, and Read tools to explore. Be thorough but focused.
Fetch existing issues to avoid proposing duplicates:
source ~/.bashrc && bun ~/.claude/skills/linear/scripts/linear-api.ts list-issues --team <KEY> --limit 50
source ~/.bashrc && bun ~/.claude/skills/linear/scripts/linear-api.ts search-issues "<keyword>"
Skip proposals that overlap with existing issues.
Group findings into categories:
| Category | Label | Description |
|---|---|---|
| Bug | Bug | Something broken or behaving incorrectly |
| Performance | Performance | Optimization opportunities |
| Feature | Feature | Missing functionality the architecture suggests |
| Tech Debt | Tech Debt | Code quality, duplication, outdated patterns |
| Security | Security | Vulnerabilities or hardening opportunities |
| Accessibility | Accessibility | A11y improvements |
| UX | UX | User experience gaps |
For each proposal, include:
### <Title> [<Category>]
**Priority**: 1-Urgent / 2-High / 3-Medium / 4-Low
**Effort**: S / M / L
**Files**: `path/to/file.ts`, `path/to/other.ts`
**Problem**: What's wrong or missing — be specific, reference code locations.
**Suggestion**: Recommended approach to fix/improve.
Return all proposals as a structured list to the orchestrator. The orchestrator will present them and let the user pick which to create as Linear issues.