sync

sync is a command for coding agents from AleksandarBisevac/claude-plugins. It costs 100 tokens per session (16,818 once invoked), scanned A, original, MIT.

A command for keeping an audit manifest, a project record of bugs, tasks, and phases, in sync with Azure DevOps work items, which are trackable entries on Microsoft's planning board.

In plain words
What is it for?
Use it to connect the project to Azure DevOps, push or pull bugs and tasks, synchronize states and sprint details, inspect links, and check sync status.
Why use it?
It prevents the manifest and Azure DevOps from drifting apart and avoids duplicate work items when the command is run again.

Command

Installs and runs on its own, but its text points at files inside its plugin — anything it tells you to read at a ${CLAUDE_PLUGIN_ROOT} path is only there once the plugin is installed. Installing the plugin gets both.

Part of the audit plugin — 2 skills, 20 commands, 4 agents, 4 hooks shipped together

Install

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.

agentmods
npx agentmods add commands/aleksandarbisevac/claude-plugins/sync
Clone the repo
git clone --depth 1 https://github.com/AleksandarBisevac/claude-plugins

Or install audit, the plugin that ships this one along with the rest of its 2 skills, 20 commands, 4 agents, 4 hooks.

Wrote 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.

agentmods badge for sync

README.md
[![agentmods](https://agentmods.dev/badge/commands/aleksandarbisevac/claude-plugins/sync.svg)](https://agentmods.dev/commands/aleksandarbisevac/claude-plugins/sync)
Your own site
<a href="https://agentmods.dev/commands/aleksandarbisevac/claude-plugins/sync"><img src="https://agentmods.dev/badge/commands/aleksandarbisevac/claude-plugins/sync.svg" alt="Measured on agentmods" height="20"></a>
Per session 100 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 16,818 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.00100 $0.16818
Opus 5 $0.00050 $0.08409
Sonnet 5 $0.00020 $0.03364
Haiku 4.5 $0.00010 $0.01682

Measured 4d ago against content hash c40b21d794e8, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

sync 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 4d 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.

plugins/audit/commands/sync.md · 1,023 lines

How it starts

The opening of the file, as written. The whole thing — 1,023 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/audit:sync — Azure DevOps work-item sync

Mirrors the manifest's bugs[], tasks and (via phaseWorkItems) phases into Azure DevOps work items and back. No background magic: every invocation does exactly one direction, shows its plan, and is idempotent (re-running converges; nothing duplicates). The orchestrator additionally echoes already-linked items on status transitions (update-only — see orchestrator.md → "ADO echo"); this command is the reconciler that heals whatever the echo missed.

$ARGUMENTS: first token is the subcommand — connect, push, pull, parents or status. Unknown/empty → print usage and stop.

connect is the one that runs before meta.ado exists, so Preflight 2 below does not apply to it: it is how the block gets written. Every other subcommand still stops without one.

0. Preflight

  1. Read ${CLAUDE_PLUGIN_ROOT}/reference/manifest-conventions.md and ${CLAUDE_PLUGIN_ROOT}/reference/tracker-sync.md (the shared contract + the ADO binding: field reference names, state fallback, parent links, iteration resolution). Resolve and read the manifest. Missing → stop, point to /audit:init.

    The manifest may be SHARDED, and then the file at manifestPath is an INDEX whose phases are stubs — the tasks, and every ado link on them, live in the phase shards beside it. A plain read of that file is therefore not a read of the manifest: it finds the bugs' links and none of the phases' or tasks', and reports the difference as unlinked rather than as unread. Nothing errors; the number is simply smaller. Every script below goes through _manifest_io.load_manifest, and the counts and links this command would otherwise walk itself come from read-ado-links.py (step 2 of status). No step in this file wants the raw file, so if you are about to Read the manifest to count something, that is the door to run instead.

  2. meta.ado must exist — else stop and point at /audit:sync connect, which verifies the transport, reports which auth path is in effect, proves access with a read-only query and detects the board's process before writing the block. Print the snippet too, for anyone who would rather write it by hand:

    "ado": { "organization": "<org>", "project": "<project>",
             "areaPath": null, "iterationPath": null,
             "types": { "bug": "Bug", "task": "Task" } }
    

    (The v2 keys — stateMap, sprint, pull, onComplete, comments, echo, phaseWorkItems, enabled — are optional; the panel's ADO card edits them all.)

  3. meta.ado.enabled: false disables writes: push and pull STOP with connector disabled — re-enable in the panel's ADO card (or set meta.ado.enabled); status still runs (read-only is the drift lens you need to decide whether to re-enable) and leads with connector DISABLED — N linked item(s) frozen, links kept.

  4. Transport: if mcp__azure-devops__wit_* / mcp__azure-devops__work MCP tools are available in this session, you MAY use them (same field mapping below). Otherwise use the az CLI via Bash: az devops configure --defaults organization=https://dev.azure.com/<org> project=<project> then az boards .... If az is missing or the azure-devops extension isn't installed, STOP with install guidance (az extension add --name azure-devops; auth via az login, or the AZURE_DEVOPS_EXT_PAT environment variable in CI).

  5. Credentials are never yours to handle: never write a PAT/token into the manifest, the config, or any file; never echo one (the secret guard blocks it anyway). Auth belongs to az / the MCP server.

  6. After EVERY manifest mutation: revalidate with python3 "${CLAUDE_PLUGIN_ROOT}/scripts/manifest/validate-manifest.py" <manifestPath>.

  7. push/pull write the manifest — hold the concurrency lock (see conventions → Concurrency lock) around those writes; status is read-only and never locks.

Read the full file on GitHub · 1,023 lines

Changes

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.

  1. 4d ago First seen · 1,023 lines · 100 tokens per session scan A c40b21d794e8

Subscribe to this mod's changes

sync is a command published in the GitHub repository AleksandarBisevac/claude-plugins (4 stars, last pushed 3d ago), licensed MIT. It adds 100 tokens to every session and 16,818 once invoked, about $0.0005 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-31.