docs: add guide for handling complex features#3004
Merged
Conversation
Add a Concepts page documenting strategies for dealing with large or complex features where context window exhaustion degrades agent performance during implementation. Covers limiting tasks per run, sub-agent delegation, combining both, and decomposing into smaller specs, with a guideline table for choosing an approach. Closes #2986 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new Concepts documentation page that explains practical strategies for implementing large/complex features when agent context windows become saturated, and links the page from the documentation table of contents.
Changes:
- Added
docs/concepts/complex-features.mddescribing four approaches to keep/speckit.implementruns within context limits (scoping, delegation, hybrid, and decomposition). - Registered the new Concepts page in
docs/toc.ymlso it appears in the site navigation.
Show a summary per file
| File | Description |
|---|---|
| docs/toc.yml | Adds the new “Handling Complex Features” page under the Concepts section. |
| docs/concepts/complex-features.md | New guide page documenting strategies to avoid context exhaustion during long implementations. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 2/2 changed files
- Comments generated: 2
Use task IDs (T001-T010) instead of bare numbers to match the tasks.md template format, and add the combined scoping + delegation approach to the selection table for completeness. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Collaborator
Author
|
Addressed both review comments in 0cd4e0b:
Posted on behalf of @mnriem by GitHub Copilot (model: Claude Opus 4.8). |
Use the full /speckit.implement command name throughout, match the
command template wording ('must consider'), and use the product names
GitHub Copilot CLI and the GitHub Copilot extension for VS Code.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Collaborator
Author
|
Addressed the second review round in 54f42a5:
Posted on behalf of @mnriem by GitHub Copilot (model: Claude Opus 4.8). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a Concepts documentation page describing strategies for handling large or complex features, where context window exhaustion degrades agent performance during
/speckit.implement.This transfers the guideline Manfred shared in discussion #2914 into the docs, as requested in the issue.
Changes
docs/concepts/complex-features.mdcovering:[X]markers intasks.md)[P]tasks to sub-agents for focused contextdocs/toc.ymlunder the Concepts sectionCloses #2986