Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add byaan-ai/byaan --skill lineargit clone --depth 1 https://github.com/byaan-ai/byaanWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/byaan-ai/byaan/linear)<a href="https://agentmods.dev/skills/byaan-ai/byaan/linear"><img src="https://agentmods.dev/badge/skills/byaan-ai/byaan/linear/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/byaan-ai/byaan/linear"><img src="https://agentmods.dev/badge/skills/byaan-ai/byaan/linear.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00011 | $0.02891 |
| Opus 5 | $0.00005 | $0.01445 |
| Sonnet 5 | $0.00002 | $0.00578 |
| Haiku 4.5 | $0.00001 | $0.00289 |
Grade A, and why
linear scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 621 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Linear GraphQL API
Use the Linear GraphQL API to manage issues, projects, cycles, and teams.
Setup Guide
Before using this skill, you need to create a Personal API key in Linear:
1. Create an API Key
- Open Linear and click the gear icon (Settings)
- Navigate to "Security & Access" in the left sidebar
- Scroll to "Personal API keys" section
- Click "Create key"
- Give it a label (e.g., "Byaan")
- Copy the key (starts with
lin_api_) - Paste this key in Settings > Skills > Linear in the app
How Authentication Works
You do not need to handle authentication manually. When you call execute_skill_api(), the system automatically:
- Retrieves the API key from the configured credentials
- Adds the
Authorization: <api_key>header (no Bearer prefix) - Sends POST request with the GraphQL query
Just call the API with skill name, endpoint path, and GraphQL query — authentication is handled for you.
How to Call the API
Linear uses GraphQL. Call execute_skill_api() with these parameters:
execute_skill_api(
skill_name="linear",
endpoint_path="/graphql",
is_graphql=True,
graphql_query="query { viewer { id name } }",
graphql_variables="{}" # Optional JSON string for variables
)
Parameters:
skill_name: Always"linear"endpoint_path: Always"/graphql"is_graphql: AlwaysTruegraphql_query: The GraphQL query or mutation stringgraphql_variables: Optional JSON string of variables for parameterized queries
Example with variables:
execute_skill_api(
skill_name="linear",
endpoint_path="/graphql",
is_graphql=True,
graphql_query="query GetIssue($id: String!) { issue(id: $id) { title } }",
graphql_variables="{\"id\": \"ABC-123\"}"
)
Workflows
Creating an Issue
You must query for IDs before creating an issue. Here's the workflow:
- Get team ID (required):
query {
teams {
nodes {
id
name
key
}
}
}
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 621 lines · 11 tokens per session scan A 96e6eb0405fd
linear is a skill published in the GitHub repository byaan-ai/byaan (95 stars, last pushed 16d ago), licensed MIT. It adds 11 tokens to every session and 2,891 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
commonly
You are a member of a Commonly workspace — a shared space where humans and AI agents from any origin collaborate in pods (chat rooms with memory). Use this whenever you are connected to Commonly via the commonly MCP tools: to read what's happening, post, remember things across sessions, react, DM other agents, and…
google-tasks-skill
Create, list, and complete Google Tasks. Supports task lists, due dates, and notes.
task-manager
Coordinate durable team tasks by assigning connected teammates, reviewing results, and accepting, retrying, reassigning, or cancelling work.
subagent-orchestration
Coordinate connected subagents through durable Task Manager assignments, bounded parallel execution, review, retry, reassignment, and acceptance.
ai-fleet-project-execution
AI fleet project execution (orchestrator=PM, marketing agent, backend dev agent, video agent). Fast-iteration architecture pivots and inter-agent task delegation across multi-hour sessions. Use when a user assigns a multi-agent project with "take it as a team" instruction.
things-mac
Manage Things 3 via the things CLI on macOS (add/update projects+todos via URL scheme; read/search/list from the local Things database). Use when a user asks CoWork-OSS to add a task to Things, list inbox/today/upcoming, search tasks, or inspect projects/areas/tags.