Fix shared_tasks.toml check sequence referencing undefined tasks#14
Merged
pmalarme merged 2 commits intofeature/add-documentation-and-copilot-instructionsfrom Feb 17, 2026
Conversation
Co-authored-by: pmalarme <686568+pmalarme@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] WIP Address feedback on adding documentation and copilot instructions
Fix shared_tasks.toml check sequence referencing undefined tasks
Feb 17, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This PR fixes a critical issue in shared_tasks.toml where the check sequence referenced three tasks (mypy, bandit, test) that weren't defined, causing poe check to fail for agents without their own implementations.
Changes:
- Added default task definitions for
mypy,bandit, andtestin shared_tasks.toml - Added explanatory comment noting agents can override these defaults in their pyproject.toml
- Ensures shared_tasks.toml is self-consistent and works standalone
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
6fafd73
into
feature/add-documentation-and-copilot-instructions
6 checks passed
8 tasks
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
The shared
checksequence inshared_tasks.tomlreferencedmypy,bandit, andtesttasks that weren't defined, breakingpoe checkfor agents without their own implementations.Added default task definitions:
mypy: Type-checkssrc/using agent's configbandit: Security-scanssrc/anddocs/source/test: Runs pytest with coverageAgents can override these defaults in their
pyproject.tomlfor custom paths/options (as agent1 already does).Testing
uv run poe checkChecklist
Additional context
Maintains existing behavior for agent1 (which overrides all three tasks) while making shared_tasks.toml self-consistent for future agents.
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.