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 another project or repo. Agentix is a running service you connect to over MCP; a local agentix repo is the source code, NOT how you use it (never run it locally). Teaches finding the URL+token (incl. keys-keeper) and connecting, the orient workflow (get_started → index → get_context), the task template, and the index convention. NOT for GitHub Issues, Jira, or the hosted Linear MCP.
How 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.
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.
If get_started/get_context tools are present, skip the connect section:
get_started (add project to focus) → read its brief; that embeds the workspace + project index.get_context(issue) → ONE call: description, spec, checklist, linked docs, sub-issues, relations, activity.move_issue(issue, "in_progress") before code → check_item each criterion → add_comment decisions → move_issue(issue, "done") when every item is checked.Everything below is the detailed version. Read on only for the parts you need.
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.
Decision tree:
get_started (or whoami) first. If it returns, you're connected — go to the work cycle. Done.https://YOUR_DOMAIN/api/* with the same refs and field names as MCP (no reload needed). This is the in-session escape hatch — see "Driving over REST" below and references/tools.md.Finding the URL + token (needed for either path). With keys-keeper, these live in separate entries — don't confuse them:
agentix-mcp = the Bearer API token ("Claude agent/member token for the global agentix MCP connection"). This is the value for Authorization: Bearer …. Load it without printing it: keys inject agentix-mcp --file /tmp/agx.env --as AGT then source. Do not paste tokens into chat.agentix-prod = a DATABASE_URL / deploy-and-ops bundle (Dokploy IDs, internal Postgres host). It is NEVER a bearer token — sending it as one will fail. It is, however, where the MCP URL lives (mcp_url / app_url + /api/mcp); the token still comes from agentix-mcp.agentix = a generic url+token API record. Usable as the API connection record.If keys-keeper has nothing, ask the human for the URL + a token (they mint one: Settings → Members → create an agent, then Settings → API tokens — shown once).
Register for future sessions (user scope = available in every project):
claude mcp add --scope user --transport http agentix https://YOUR_DOMAIN/api/mcp \
--header "Authorization: Bearer <TOKEN>"
After the human reloads, whoami should return { name, kind: "agent", role }.
Since the REST surface became a true mirror of the MCP adapter, you can do the whole job over HTTP with the same Bearer token — useful when MCP isn't loaded and you can't reload:
AGX, AGX-12, a milestone name) works on every ref field, not just UUIDs.description/descriptionMd, content/contentMd, body/bodyMd, project/projectId, issue/issueId, parent/parentId, assignee/assigneeId, lead/leadId, milestone/milestoneId all work in REST bodies, same as MCP.{ error: { code, message } } instead of silently dropping (the old silent-field-drop trap is gone). Unknown paths return a JSON 404, not HTML.PATCH /api/issues/:ref {"status":"in_progress"}; spec is PATCH /api/issues/:ref/spec; tick an item is PATCH /api/checklist/:itemId {"done":true}.GET /api/health is unauthenticated ({ ok: true }, or 503 if Postgres is down). GET /api/started?project=<ref> is the REST get_started.Full verb/path mapping per tool: 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.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"). Linked the wrong pair? unlink_issues(relationId) (the relationId comes from get_issue).Status is how the next agent and the human know what's actually happening. Move it as the work moves — never leave active work parked in todo/backlog.
in_progress BEFORE you touch code. The moment you start working an issue, move_issue(issue, "in_progress"). Don't write a line until the status reflects that you own it.in_review when the PR is up. move_issue(issue, "in_review") when you open the PR / push for review. Reference the PR or commit in a comment.done only when every checklist item is checked. Don't close an issue with unticked acceptance criteria — those criteria are the definition of done. Tick each with check_item as it passes, leave a short summary comment, then move_issue(issue, "done").As you go: check_item each criterion the moment it's true, and add_comment every decision, trade-off, or blocker — don't batch it to the end. Epic status is auto-derived from its issues — never set an epic's status by hand.
Both gates spelled out as checklists: references/quality-gates.md.
Agentix has destructive tools for genuinely mis-filed work — an empty probe issue, a stale doc, a throwaway milestone: delete_issue, delete_document, delete_epic, delete_milestone, delete_project, delete_checklist_item, plus unlink_issues. These are hard deletes (not reversible; delete_epic/delete_milestone detach issues rather than delete them). For real work that turned out redundant, prefer a duplicates link + comment over deletion — the trail is more useful. Signatures for all of them: references/tools.md.
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 43 MCP tools — including the delete_*/unlink_issues cleanup tools — grouped, with parameters, return shapes, and the REST verb/path for each: references/tools.md.
Step-by-step recipes (take an assigned issue, file a well-specced issue, plan an epic, bootstrap/refresh the index, clean up a mistake): references/workflows.md.
See also:
references/tools.md — every MCP tool with signatures, return shapes, and REST equivalents.references/task-template.md — the issue-creation template + best practices (search-before-create, spec, checklist, granularity ladder).references/quality-gates.md — the two checklists: ready-to-start (move to in_progress) and ready-for-done.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.npx claudepluginhub kyzdes/claude-skills --plugin agentixGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.