task-tracking-intermediate

task-tracking-intermediate is a cursor rule for Cursor from Angry-Robot-Deals/ace-mcp. It costs 0 tokens per session (1,030 once invoked), scanned A, a copy of task-tracking-intermediate, MIT.

A structured method for tracking medium-sized software tasks through requirements, implementation steps, affected components, and checkpoints.

In plain words
What is it for?
Planning intermediate features, recording progress, marking blockers, and confirming completion.
Why use it?
It reduces the chance of losing track of work or missing important parts of a feature.

Cursor rule for Cursor

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 rules/angry-robot-deals/ace-mcp/task-tracking-intermediate
Clone the repo
git clone --depth 1 https://github.com/Angry-Robot-Deals/ace-mcp

Made for: Cursor.

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 task-tracking-intermediate

README.md
[![agentmods](https://agentmods.dev/badge/rules/angry-robot-deals/ace-mcp/task-tracking-intermediate.svg)](https://agentmods.dev/rules/angry-robot-deals/ace-mcp/task-tracking-intermediate)
Your own site
<a href="https://agentmods.dev/rules/angry-robot-deals/ace-mcp/task-tracking-intermediate"><img src="https://agentmods.dev/badge/rules/angry-robot-deals/ace-mcp/task-tracking-intermediate.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 1,030 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 100% copy Near-identical to another mod 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.00000 $0.01030
Opus 5 $0.00000 $0.00515
Sonnet 5 $0.00000 $0.00206
Haiku 4.5 $0.00000 $0.00103

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

Security

Grade A, and why

task-tracking-intermediate 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 5d 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.

Origin

This is a copy

100% identical to task-tracking-intermediate โ€” 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.cursor/rules/isolation_rules/Level3/task-tracking-intermediate.mdc ยท 135 lines

How it starts

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

LEVEL 3 INTERMEDIATE TASK TRACKING

TL;DR: This document provides structured task tracking guidelines for Level 3 (Intermediate Feature) tasks, using visual tracking elements and clear checkpoints.

๐Ÿ” TASK TRACKING WORKFLOW

graph TD
    Start["Task Start"] --> Init["๐Ÿ“‹ Initialize<br>Task Entry"]
    Init --> Struct["๐Ÿ—๏ธ Create Task<br>Structure"]
    Struct --> Track["๐Ÿ“Š Progress<br>Tracking"]
    Track --> Update["๐Ÿ”„ Regular<br>Updates"]
    Update --> Complete["โœ… Task<br>Completion"]
    
    Struct --> Components["Components:"]
    Components --> Req["Requirements"]
    Components --> Steps["Implementation<br>Steps"]
    Components --> Creative["Creative Phase<br>Markers"]
    Components --> Check["Checkpoints"]
    
    Track --> Status["Track Status:"]
    Status --> InProg["๐Ÿ”„ In Progress"]
    Status --> Block["โ›” Blocked"]
    Status --> Done["โœ… Complete"]
    Status --> Skip["โญ๏ธ Skipped"]
    
    style Start fill:#4da6ff,stroke:#0066cc,color:white
    style Init fill:#ffa64d,stroke:#cc7a30,color:white
    style Struct fill:#4dbb5f,stroke:#36873f,color:white
    style Track fill:#d94dbb,stroke:#a3378a,color:white
    style Update fill:#4dbbbb,stroke:#368787,color:white
    style Complete fill:#d971ff,stroke:#a33bc2,color:white

๐Ÿ“‹ TASK ENTRY TEMPLATE

# [Task Title]

## Requirements
- [ ] Requirement 1
- [ ] Requirement 2
- [ ] Requirement 3

## Components Affected
- Component 1
- Component 2
- Component 3

## Implementation Steps
1. [ ] Step 1
2. [ ] Step 2
3. [ ] Step 3

## Creative Phases Required
- [ ] ๐ŸŽจ UI/UX Design
- [ ] ๐Ÿ—๏ธ Architecture Design
- [ ] โš™๏ธ Algorithm Design

## Checkpoints
- [ ] Requirements verified
- [ ] Creative phases completed
- [ ] Implementation tested
- [ ] Documentation updated

## Current Status
- Phase: [Current Phase]
- Status: [In Progress/Blocked/Complete]
- Blockers: [If any]

๐Ÿ”„ PROGRESS TRACKING VISUALIZATION

graph TD
    subgraph "TASK PROGRESS"
    P1["โœ“ Requirements<br>Defined"]
    P2["โœ“ Components<br>Identified"]
    P3["โ†’ Creative Phase<br>In Progress"]
    P4["โ–ก Implementation"]
    P5["โ–ก Testing"]
    P6["โ–ก Documentation"]
    end
    
    style P1 fill:#4dbb5f,stroke:#36873f,color:white
    style P2 fill:#4dbb5f,stroke:#36873f,color:white
    style P3 fill:#ffa64d,stroke:#cc7a30,color:white
    style P4 fill:#d94dbb,stroke:#a3378a,color:white
    style P5 fill:#4dbbbb,stroke:#368787,color:white
    style P6 fill:#d971ff,stroke:#a33bc2,color:white

Read the full file on GitHub ยท 135 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. 5d ago First seen ยท 135 lines ยท 0 tokens per session scan A 2a82aa59872a

Subscribe to this mod's changes

task-tracking-intermediate is a cursor rule published in the GitHub repository Angry-Robot-Deals/ace-mcp (4 stars, last pushed 6mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,030 tokens. A static security scan graded it A with 0 findings. It is 100% identical to task-tracking-intermediate, differing in 0 lines, and is treated as a copy.