archi-task-state-reconcile

archi-task-state-reconcile is a skill for Claude Code from JiuNian3219/architext. It costs 43 tokens per session (1,123 once invoked), scanned A, original, MIT.

A status-checking helper for Architext project tasks. It compares a task's recorded status with available evidence to identify stale pending or blocked states.

In plain words
What is it for?
It checks whether a dependency is actually complete or whether a pending task has enough detail to become active.
Why use it?
It helps distinguish a genuinely unfinished task from one whose roadmap status was not updated. It recommends the next status action without changing the roadmap itself.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter. Also seen: mentions subagents.

Good fit It checks whether a dependency is actually complete or whether a pending task has enough detail to become active.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jiunian3219/architext/archi-task-state-reconcile
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.

Any agent
npx skills add JiuNian3219/architext --skill archi-task-state-reconcile
Clone the repo
git clone --depth 1 https://github.com/JiuNian3219/architext

Made for: Claude Code.

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 archi-task-state-reconcile

README.md
[![agentmods](https://agentmods.dev/badge/skills/jiunian3219/architext/archi-task-state-reconcile/github.svg)](https://agentmods.dev/skills/jiunian3219/architext/archi-task-state-reconcile)
Your own site
<a href="https://agentmods.dev/skills/jiunian3219/architext/archi-task-state-reconcile"><img src="https://agentmods.dev/badge/skills/jiunian3219/architext/archi-task-state-reconcile/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.

agentmods 80×15 button for archi-task-state-reconcile

Your own site · 80×15
<a href="https://agentmods.dev/skills/jiunian3219/architext/archi-task-state-reconcile"><img src="https://agentmods.dev/badge/skills/jiunian3219/architext/archi-task-state-reconcile.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,123 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00043 $0.01123
Opus 5 $0.00022 $0.00562
Sonnet 5 $0.00009 $0.00225
Haiku 4.5 $0.00004 $0.00112

Measured 12d ago against content hash 7ca5a8676a02, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

archi-task-state-reconcile 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 12d 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.

templates/en/skills/archi-task-state-reconcile/SKILL.md · 108 lines

How it starts

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

Invocation

  • Auto invoke: No. Only invoked explicitly by /archi.* protocols through [[SUBAGENT]] / [[NO-SUBAGENT]].
  • Trigger location: A task is blocked by pending / blocked / deps not done, and stale status may be the cause.
  • Execution context: When subagents are supported, must run in an isolated subagent/context. Without subagents, fall back to inline Skill execution.
  • Boundary: Only judge whether task status is stale and return a recommended action; never mutate roadmap/task status directly.

Architext Task State Reconcile

Purpose

Decide whether a task or dependency is actually complete/planned while roadmap status is stale. This Skill is a status reconciler; it does not implement, edit docs, or sign off for the main protocol.

Inputs

  • task_id: Task being checked.
  • mode: dependency_done | target_active
    • dependency_done: Check whether a dependency is actually complete and can be marked done.
    • target_active: Check whether the target task has completed detail and can be marked active.
  • reason: Invocation reason, for example blocked_by_deps, target_pending.
  • known_blockers: Blocker IDs known by caller, optional.

Read Budget

  1. Read only target task and direct deps from global/roadmap.json, extracting id/title/status/deps.
  2. Read spec.md and plan.json under the target task directory; missing files mean insufficient evidence.
  3. May run:
    • npx archi plan <ID>: judge plan completion / detail readiness.
    • npx archi task --check: judge structure state has no ERROR.
  4. Check artifact existence only when plan explicitly lists key output paths. Do not read all source files.
  5. Do not read unrelated tasks, refs, screens, or large product source files.

Decision Rules

mode = dependency_done

Return status_stale_done only when all are true:

  • spec.md and plan.json exist;
  • all AI-completable plan.json items are done, or npx archi plan <ID> reports complete / only exempt items remain;
  • npx archi task --check has no ERROR;
  • if plan declares key artifact paths, those paths exist.

Read the full file on GitHub · 108 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. 12d ago First seen · 108 lines · 43 tokens per session scan A 7ca5a8676a02

Subscribe to this mod's changes

archi-task-state-reconcile is a skill published in the GitHub repository JiuNian3219/architext (14 stars, last pushed 4mo ago), licensed MIT. It adds 43 tokens to every session and 1,123 once invoked, about $0.0002 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.

Related

Other skills, from other repositories

ppt-orchestrator

A dispatcher for creating presentations, slide decks, long images, and weekly reports. It chooses a visual style and output format, then sends the work to a more specialised add-on.

huangrichao2020/pretty-skills · 160 tokens

zhongguose-html-skill

An HTML-only presentation system using traditional Chinese colours and Chinese-style visual design. It helps organise source material into a report structure and produces a self-contained HTML file with its assets.

huangrichao2020/pretty-skills · 232 tokens

dashiai-ppt

A presentation-making add-on that creates an HTML slide deck from preset visual page designs. The result can open offline in a browser and can be exported as a PowerPoint or PDF file.

huangrichao2020/pretty-skills · 62 tokens

wechat-delivery

A workflow for preparing WeChat Official Account articles, images, covers, and publishing files in Chinese. WeChat Official Accounts are channels used by organizations to publish articles to followers.

huangrichao2020/pretty-skills · 129 tokens

教程类H5-小红书小工具

A method for building offline, single-page course experiences for Xiaohongshu’s Mini Tools, which are interactive pages published inside the platform. It combines written lessons, generated illustrations, and JavaScript page switching in a constrained container.

huangrichao2020/pretty-skills · 110 tokens

huashu-book-pdf

A workflow for researching, planning, writing, reviewing, and building a complete book or guide as PDF, DOCX, and EPUB files.

huangrichao2020/pretty-skills · 187 tokens