Help us improve
Share bugs, ideas, or general feedback.
From agentix
Work the Agentix issue tracker — an agent-native, Linear-style tracker (projects, epics, issues, milestones, checklists, wiki) reached over a REMOTE, hosted MCP server named `agentix` (REST mirror at `/api/*`). Use whenever the agentix MCP tools are present (get_started, get_context, create_issue, search, create_document, set_task_spec…), OR the user mentions Agentix / "the tracker" / "заведи/создай задачу" / "create an issue/task" / "log work" / planning epics/milestones / the wiki/index/"оглавление", OR asks to write, file, sync, or push tasks, specs, backlog, epics, context, or docs INTO Agentix — even from a different project or repo. Agentix is a running service you connect to over MCP — if a local agentix repo exists, that is the source code, NOT how you use it (never run it locally). Teaches: how to find the URL+token (incl. keys-keeper) and connect, the orientation workflow (get_started → index → get_context), the task template (title + spec + checklist), and the index convention. NOT for GitHub Issues, Jira, or the hosted Linear MCP.
npx claudepluginhub kyzdes/agentix-skillHow this skill is triggered — by the user, by Claude, or both
Slash command
/agentix:agentixThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Agentix is an **agent-native issue tracker** — projects → epics → issues → milestones, plus checklists, relations, and a wiki — exposed over an MCP server named `agentix` (REST mirror at `/api/*`). This skill tells you how to work it efficiently: orient cheaply, work one issue at a time, and file issues another agent can pick up without you.
Guides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.
Share bugs, ideas, or general feedback.
Agentix is an agent-native issue tracker — projects → epics → issues → milestones, plus checklists, relations, and a wiki — exposed over an MCP server named agentix (REST mirror at /api/*). This skill tells you how to work it efficiently: orient cheaply, work one issue at a time, and file issues another agent can pick up without you.
Don't read everything. Call get_started first, then pull only what the task needs (get_context, search, targeted list_*). Reading the whole wiki "to understand the project" is the exact failure mode this skill exists to prevent — it burns your context before you've done any work.
Agentix runs as a hosted/self-hosted server; you use it over MCP, you don't stand it up. If an agentix repo exists on disk, that's the source code — it is NOT how you connect. Never npm run dev / spin up the local app to "use the tracker." Working with Agentix from another project is normal — the tracker is remote.
get_started (or whoami). If it works, you're connected — skip to the work cycle.keys list --search agentix. Get the URL from keys info agentix-mcp (or agentix), and load the token without exposing it: keys inject agentix-mcp --file /tmp/agx.env --as AGT (then source it). Don't paste tokens into chat.claude mcp add --scope user --transport http agentix https://YOUR_DOMAIN/api/mcp \
--header "Authorization: Bearer <TOKEN>"
MCP servers load at session start, so reload/restart the session after adding. Confirm with whoami → { name, kind: "agent", role }.Until the MCP is connected you can also drive Agentix over its REST API with the same token (GET /api/started, POST /api/issues, …) — see references/tools.md.
get_started (add project to focus one project). Read its brief.get_started brief embeds the workspace index and, when focused, the project index. That's your map. Don't go wider unless the task needs it.get_context(issue). ONE call returns the description, spec (relevant paths + test command), acceptance checklist, linked wiki docs, sub-issues, relations, and recent activity. Don't reconstruct this by hand.search("…") for duplicates; reuse an existing epic/milestone instead of inventing one.set_task_spec (relevantPaths + testCommand) and add_checklist_item for each acceptance criterion. See references/task-template.md.move_issue (status), check_item (tick criteria), add_comment (decisions/blockers), assign_issue.index document. See references/index-convention.md.get_started and the MCP server's instructions already restate this cycle, so it works even before this skill loads — but this skill is the detailed version.
get_started firstget_started returns, in one call:
you — your actor; inboxUnread — assignments/@mentions waiting.workflow + conventions — the house rules.projects — every project with a one-liner and open/total issue counts.globalIndex — the workspace index document (or globalIndexMissing: true + globalIndexTemplate to bootstrap it).globalWiki — a catalogue of global docs (slug/type/title) so you know what exists without reading them.focus (when you pass project) — that project's index, epics, milestones, and wiki catalogue.brief — all of the above composited into ready-to-read markdown. Read the brief; drill into structured fields only when you need exact values.If globalIndexMissing (or focus.indexMissing) is true, create the index before doing other work — it's the first investment that pays back on every future session. The response hands you the exact template.
The index ("оглавление") is a normal wiki document with slug index, type context_map: one global (no project) plus one per project. It lists domains / where things live, the key docs (as [[slug]] links), and active work. Agents read it first and update it when the structure changes — so nobody has to re-read the whole wiki. Full convention, templates, and update triggers: references/index-convention.md.
Agentix issues are richer than a title + prose. A good issue carries its own brief:
[[AGX-12]] / [[doc-slug]].set_task_spec(issue, relevantPaths, testCommand): the files to touch and how to verify. This is what lets an agent start without spelunking.add_checklist_item per criterion (checkable), not a prose blob.project, and an epic/milestone when it belongs to a larger body of work.add_sub_issue). Much too big? it's an epic or milestone, not an issue.Full template, field-by-field, with the Linear-derived best practices adapted to Agentix: references/task-template.md.
get_context(issue) to load everything. Work from its brief.move_issue(issue, "in_progress") when you start; in_review when you open a PR; done when criteria pass.check_item(itemId, true) as you satisfy each acceptance criterion.add_comment for decisions, blockers, and "what I did" — that's the audit trail other agents and humans read.link_issues(issue, target, "blocks" | "relates" | "duplicates").search("query") — ranked full-text over issues and documents. Your default for "is there already…?".get_context(issue) — everything for one issue.get_backlinks(issue) — which wiki docs point at this issue.list_issues / list_documents / list_epics / list_milestones — targeted, filterable lists.[[slug]] / [[AGX-12]] in any document body create the wiki-link graph; get_context and backlinks traverse it.All 36 MCP tools, grouped, with parameters and what they return: references/tools.md.
Step-by-step recipes (take an assigned issue, file a well-specced issue, plan an epic, bootstrap/refresh the index): references/workflows.md.
See also:
references/tools.md — every MCP tool with signatures and return shapes.references/task-template.md — the issue-creation template + best practices (search-before-create, spec, checklist, granularity ladder).references/index-convention.md — the global + per-project index convention, templates, and when to update.references/workflows.md — end-to-end recipes for the most common agent tasks.