/int-linear-review
Review Linear projects — check issues in review, blockers, stale items, sprint progress, and assigned tasks. Use when user says 'check linear', 'linear review', 'sprint status', 'issues in review', 'project status', 'what is blocked', or any reference to checking project/issue
$ npx -y skills add evolution-foundation/evo-nexus --skill int-linear-review --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/int-linear-review
Context preview
The summary Claude sees to decide when to auto-load this skill.
Review Linear projects — check issues in review, blockers, stale items, sprint progress, and assigned tasks. Use when user says 'check linear', 'linear review', 'sprint status', 'issues in review', 'project status', 'what is blocked', or any reference to checking project/issue
SKILL.md
int-linear-review.SKILL.mdname: int-linear-review
description: "Review Linear projects — check issues in review, blockers, stale items, sprint progress, and assigned tasks. Use when user says 'check linear', 'linear review', 'sprint status', 'issues in review', 'project status', 'what is blocked', or any reference to checking project/issue status in Linear."
Linear Review — Project Check
Skill to review the state of Linear projects: issues in review, blockers, stale items, sprint progress, and assigned tasks.
**Always respond in English.**
Workflow
Execute the steps below silently and present a consolidated report at the end.
Step 1 — Gather context
Use the Linear MCP tools to collect data:
1. **Issues in Review** — list issues with state "In Review" or "Review":
list_issues(state="In Review")
2. **User's issues** — list issues assigned to the user:
list_issues(assignee="me")
3. **Blockers** — list issues with Urgent (1) or High (2) priority:
list_issues(priority=1)
list_issues(priority=2)
4. **Stale issues** — list "In Progress" issues not updated in the last 3 days:
list_issues(state="In Progress", updatedAt="-P3D")
Compare: if the issue is "In Progress" but hasn't been updated in more than 3 days, mark as stale.
5. **Current cycle** — check active sprint/cycle progress:
list_cycles(teamId="...", type="current")
Step 2 — Analyze
For each group, identify:
- **In Review:** who needs to review, how long it has been pending
- **Blockers:** what is blocking and who is responsible
- **Stale:** issues stagnant without activity — need attention or re-prioritization
- **My issues:** what the user needs to do first (by priority)
Step 3 — Report
Present in the format:
## Linear Review — {data}
### In Review ({N})
| Issue | Title | Assignee | Days in review |
|-------|--------|-------------|----------------|
### Blockers ({N})
| Issue | Title | Priority | Assignee | Block description |
|-------|--------|------------|-------------|----------------------|
### Stale — Inactive >3 days ({N})
| Issue | Title | Assignee | Last updated |
|-------|--------|-------------|-------------------|
### My Issues ({N})
| Issue | Title | Status | Priority |
|-------|--------|--------|------------|
### Current Sprint/Cycle
- Progress: {X}% ({completed}/{total})
- Deadline: {end date}
- Risk: {high/medium/low}Step 4 — Save HTML artifact
Read the template at `.claude/templates/html/custom/linear-review.html`, fill all `{{PLACEHOLDER}}` with the data collected in previous steps, and save the complete HTML to `workspace/projects/linear-reviews/[C] YYYY-MM-DD-linear-review.html`.
Create the directory `workspace/projects/linear-reviews/` if it does not exist.
Rules
- **Do not modify issues** — only read and report. Changes only with user approval
- **Prioritize clarity** — if unable to determine the team or cycle, list what you find without blocking
- **Highlight risks** — issues in review for more than 2 days or stale are warning signs
- **Be direct** — numbers, not narrative
Notification line
Write as the last line of your output: TELEGRAM_MSG: 📋 Linear Review [date] | [main result in 1 line]
Read more
name: int-linear-review description: "Review Linear projects — check issues in review, blockers, stale items, sprint progress, and assigned tasks. Use when user says 'check linear', 'linear review', 'sprint status', 'issues in review', 'project status', 'what is blocked', or any reference to checking project/issue status in Linear."
Linear Review — Project Check
Skill to review the state of Linear projects: issues in review, blockers, stale items, sprint progress, and assigned tasks.
**Always respond in English.**
Workflow
Execute the steps below silently and present a consolidated report at the end.
Step 1 — Gather context
Use the Linear MCP tools to collect data:
1. **Issues in Review** — list issues with state "In Review" or "Review":
list_issues(state="In Review")
2. **User's issues** — list issues assigned to the user:
list_issues(assignee="me")
3. **Blockers** — list issues with Urgent (1) or High (2) priority:
list_issues(priority=1) list_issues(priority=2)
4. **Stale issues** — list "In Progress" issues not updated in the last 3 days:
list_issues(state="In Progress", updatedAt="-P3D")
Compare: if the issue is "In Progress" but hasn't been updated in more than 3 days, mark as stale.
5. **Current cycle** — check active sprint/cycle progress:
list_cycles(teamId="...", type="current")
Step 2 — Analyze
For each group, identify:
- **In Review:** who needs to review, how long it has been pending
- **Blockers:** what is blocking and who is responsible
- **Stale:** issues stagnant without activity — need attention or re-prioritization
- **My issues:** what the user needs to do first (by priority)
Step 3 — Report
Present in the format:
## Linear Review — {data}
### In Review ({N})
| Issue | Title | Assignee | Days in review |
|-------|--------|-------------|----------------|
### Blockers ({N})
| Issue | Title | Priority | Assignee | Block description |
|-------|--------|------------|-------------|----------------------|
### Stale — Inactive >3 days ({N})
| Issue | Title | Assignee | Last updated |
|-------|--------|-------------|-------------------|
### My Issues ({N})
| Issue | Title | Status | Priority |
|-------|--------|--------|------------|
### Current Sprint/Cycle
- Progress: {X}% ({completed}/{total})
- Deadline: {end date}
- Risk: {high/medium/low}Step 4 — Save HTML artifact
Read the template at `.claude/templates/html/custom/linear-review.html`, fill all `{{PLACEHOLDER}}` with the data collected in previous steps, and save the complete HTML to `workspace/projects/linear-reviews/[C] YYYY-MM-DD-linear-review.html`.
Create the directory `workspace/projects/linear-reviews/` if it does not exist.
Rules
- **Do not modify issues** — only read and report. Changes only with user approval
- **Prioritize clarity** — if unable to determine the team or cycle, list what you find without blocking
- **Highlight risks** — issues in review for more than 2 days or stale are warning signs
- **Be direct** — numbers, not narrative
Notification line
Write as the last line of your output: TELEGRAM_MSG: 📋 Linear Review [date] | [main result in 1 line]
Other skills on evo-nexus.
- /ai-image-creator
Generate PNG images using AI (multiple models via OpenRouter including Gemini, FLUX.2, Riverflow, SeedDream, GPT-5 Image, proxied through Cloudflare AI Gateway BYOK). Also analyze/describe existing images using multimodal AI vision. Use when user asks to "generate an image",
Open skill - /create-agent
Create a new custom agent for the workspace. Guides the user through defining agent name, domain, personality, skills, model, and memory folder. Use when the user says 'create an agent', 'new agent', 'add an agent', 'I need a custom agent', or wants to create a specialized agent
Open skill - /create-command
Create a new slash command for Claude Code. Guides the user through defining the command name, what it does, and generates the markdown file in .claude/commands/. Use when the user says 'create a command', 'new command', 'add a slash command', 'I want a shortcut for', or wants
Open skill - /create-goal
Create a Mission, Project, or Goal (Mission → Project → Goal → Task hierarchy) in EvoNexus. Guides the user through picking a mission, choosing or creating a project, defining a measurable goal with metric_type and target_value. Writes to the SQLite goals tables via POST
Open skill - /create-heartbeat
Create a new heartbeat (proactive agent scheduled with a decision prompt) for EvoNexus. Guides the user through picking an agent, setting interval, wake triggers, and the decision prompt that governs when the agent acts. Writes to config/heartbeats.yaml with pydantic validation.
Open skill - /create-integration
Create a new custom integration (API/service wrapper) for the workspace. Guides the user through defining the integration's slug, display name, description, category, and required env keys. Writes .claude/skills/custom-int-{slug}/SKILL.md via POST /api/integrations/custom. Use
Open skill

