المهارات linear
📋
linear
مخاطر منخفضة 🔑
متغيرات البيئة📁
الوصول إلى نظام الملفات⚙️
الأوامر الخارجية🌐
الوصول إلى الشبكة
从命令行管理 Linear 问题和工作
在终端中跟踪和管理 Linear 问题。创建任务、关联问题、查看详情以及运行 GraphQL 查询。通过简单的 CLI 界面自动化您的项目管理流程。
يدعم: Claude Codex Code(CC)
1
تنزيل ZIP المهارة
2
رفع في Claude
اذهب إلى Settings → Capabilities → Skills → Upload skill
3
فعّل وابدأ الاستخدام
اختبرها
استخدام "linear". List my issues
النتيجة المتوقعة:
- ENG-456: Fix authentication bug (In Progress)
- ENG-789: Update documentation (Backlog)
- ENG-321: Add unit tests for user module (Done)
التدقيق الأمني
مخاطر منخفضةv2 • 1/10/2026
Documentation-only skill for Linear CLI. Pure markdown documentation with no executable code. Provides instructions for using an external Zig binary. Low risk due to informational nature and standard auth patterns.
4
الملفات التي تم فحصها
1,010
الأسطر التي تم تحليلها
4
النتائج
2
إجمالي عمليات التدقيق
عوامل الخطر
🔑 متغيرات البيئة (3)
📁 الوصول إلى نظام الملفات (3)
⚙️ الأوامر الخارجية (2)
🌐 الوصول إلى الشبكة (2)
تم تدقيقه بواسطة: claude عرض سجل التدقيق →
درجة الجودة
38
الهندسة المعمارية
100
قابلية الصيانة
81
المحتوى
30
المجتمع
90
الأمان
78
الامتثال للمواصفات
ماذا يمكنك بناءه
跟踪开发任务
在编码会话期间直接从终端创建问题、分配工作并关联相关任务。
监控团队进度
按团队列出问题、按负责人筛选,并在不打开浏览器的情况下查询项目状态。
自动化问题工作流
通过 CLI 或 GraphQL 将 Linear 操作集成到 CI/CD 管道和自动化工作流中。
جرّب هذه الموجهات
列出我的问题
List my open issues in the engineering team
创建任务
Create a new issue in the engineering team titled 'Fix login bug' with high priority
关联相关问题
Link issue ENG-123 as blocking ENG-456
运行 GraphQL 查询
Show me all workflow states for the engineering team using GraphQL
أفضل الممارسات
- Use --yes flag for all mutations to avoid interactive prompts in scripts
- Get issue UUIDs with --json output when using --parent flag
- Set default team and output format with linear config set commands
تجنب
- Using issue identifiers where UUIDs are required (--parent flag)
- Running mutations without --yes in automated scripts
- Hard-coding team IDs instead of using team keys
الأسئلة المتكررة
如何安装 Linear CLI?
Run npm install -g @0xbigboss/linear-cli. Requires Zig 0.15.2 to build from source.
我需要什么 API 密钥?
Create a personal API key at linear.app/settings/api. Set it with linear auth set or LINEAR_API_KEY env var.
我可以在任何 Linear 工作区使用这个吗?
Yes. The CLI works with any Linear workspace where your API key has appropriate permissions.
认证是如何工作的?
Auth uses Authorization header (no Bearer). Precedence: CLI flags, then LINEAR_API_KEY env, then config file.
为什么我得到空结果?
Most likely missing --team flag. Check default config or specify --team TEAM_KEY explicitly.
这与直接使用 Linear API 有什么不同?
The CLI wraps the GraphQL API with convenient commands, filtering, and JSON formatting. Use linear gql for raw queries.