-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
Progressive Estimation works with any AI coding client that supports custom instructions.
| Client | Install Method | Progressive Loading | Limits |
|---|---|---|---|
| Claude Code |
git clone to skills dir |
Full | 2% context for descriptions |
| Cursor | .cursor/rules/*.mdc |
Yes (agent-decided) | No documented limit |
| GitHub Copilot | .github/instructions/ |
Yes (path-specific) | No documented limit |
| Windsurf | .windsurf/rules/*.md |
Partial | 6K/file, 12K total |
| Cline |
.clinerules/ directory |
No | No documented limit |
| Aider |
read: in .aider.conf.yml
|
No (on-demand via /read) |
Context window |
| Continue.dev |
rules: in config.yaml
|
No | Context window |
| ChatGPT | Project UI + file uploads | No | 1,500 chars instructions |
| Gemini | .gemini/styleguide.md |
No | No documented limit |
Full progressive loading. Files load on demand per phase.
git clone https://github.com/Enreign/progressive-estimation.git ~/.claude/skills/progressive-estimationThe skill auto-triggers when you ask for estimates. Invoke explicitly with /progressive-estimation.
Create .cursor/rules/progressive-estimation.mdc:
---
description: "Use when the user asks for time estimates, effort sizing, story points, or estimation of development tasks"
alwaysApply: false
---Then paste the contents of SKILL.md below the frontmatter. Reference additional files with @path/to/file.
Copy SKILL.md to .github/instructions/estimation.instructions.md:
---
applyTo: "**/*"
---Reference files with #file:path/to/file syntax.
Copy SKILL.md to .windsurf/rules/progressive-estimation.md.
Note: 6,000 character limit per rule file, 12,000 total. Keep to SKILL.md only; load references via chat.
Copy to .clinerules/01-estimation-workflow.md or paste into VS Code Settings > Cline > Custom Instructions.
For multiple files, use .clinerules/ directory with numbered prefixes.
Add to .aider.conf.yml:
read: path/to/progressive-estimation/SKILL.mdLoad additional references during session with /read path/to/file.
Add to ~/.continue/config.yaml:
rules:
- uses: file:///absolute/path/to/progressive-estimation/SKILL.md- Create a Project
- Paste a short instruction: "For estimation tasks, follow the uploaded SKILL.md"
- Upload all
.mdfiles from the skill as project files
Copy SKILL.md to .gemini/styleguide.md.
See the full INSTALLATION.md for detailed instructions with examples.
Getting Started
Core Concepts
- How It Works
- Task Types
- Agent Effectiveness
- Confidence Levels
- Cone of Uncertainty
- PERT Statistics
- Small Council
Reference
Accuracy
Contributors