Install
$ agentstack add skill-eric861129-skills-all-in-one-linear-cli-skill ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Linear Issue Management
Use this skill whenever the user mentions Linear or asks to work with issues.
Lightweight CLI to interact with Linear's issue tracking system. All commands run from the skill directory using ./linear.
Setup
Dependencies install automatically on first run. API key errors are self-explanatory.
Command Pattern
./linear [arguments] [options]
Resources: issue, user, team, project
Commands
List Users
./linear user list
Returns: #
List Teams
./linear team list
Returns: #
List Projects
./linear project list
Returns: #
List Issues
./linear issue list [options]
Options:
--team- Filter by team ID--assignee- Filter by user ID--status- Filter by status name (case-sensitive)--limit- Limit results (default: 50)
Returns: #
Examples:
./linear issue list --team abc123 --limit 10
./linear issue list --assignee def456 --status "In Progress"
View Issue
./linear issue view
Arguments:
- `
- Issue identifier (e.g.,ENG-123`) or UUID
Returns full issue details including title, status, assignee, team, priority, labels, dates, description, and comments.
Create Issue
./linear issue create [options]
Arguments:
- `` - Issue title (multi-word titles auto-combined)
Options:
--team- Team ID (required)--description- Issue description--assignee- User ID--priority- Priority (0=None, 1=Urgent, 2=High, 3=Medium, 4=Low)--status- Initial status
Example:
./linear issue create "Fix login bug" --team abc123 --priority 2
Add Comment
./linear issue comment
Multi-word text auto-combined. No quotes needed.
Update Issue
./linear issue update [options]
Options:
--status- Update status--assignee- Update assignee--priority- Update priority--title- Update title--description- Update description
Can update multiple fields in one command.
Example:
./linear issue update ENG-123 --status "In Progress" --assignee abc123
Delete Issue
./linear issue delete
Soft delete (moves to trash, recoverable).
Important Notes
- Issue identifiers are case-insensitive (
ENG-123=eng-123) - Status names are case-sensitive ("In Progress" ≠ "in progress")
- User/team IDs are UUIDs (get from list commands)
- Issue keys format:
-(e.g., ENG-123) - All commands support
--jsonflag for machine-readable output - Use
--helpon any command for details
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: eric861129
- Source: eric861129/SKILLS_All-in-one
- License: MIT
- Homepage: http://huangchiyu.com/SKILLS_All-in-one/
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.