Optimize agent files and add developer tooling (VS Code tasks, build/lint scripts)#73
Merged
Malcolmnixon merged 5 commits intomainfrom Jan 28, 2026
Merged
Conversation
Contributor
|
@copilot Other interesting improvements on the https://github.com/demaconsulting/SarifMark projects include:
|
Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com>
Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com>
Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Review project structure and enhance agent documentation
Optimize agent files for token efficiency and add VS Code task automation
Jan 28, 2026
Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com>
Contributor
Author
Added build and lint scripts following the SarifMark pattern in commit 8b12075. The scripts provide convenient cross-platform command-line interfaces for building/testing and running all linters (markdown, spell check, YAML, and code formatting). |
Copilot
AI
changed the title
Optimize agent files for token efficiency and add VS Code task automation
Optimize agent files and add developer tooling (VS Code tasks, build/lint scripts)
Jan 28, 2026
Malcolmnixon
approved these changes
Jan 28, 2026
This was referenced Feb 2, 2026
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.
Pull Request
Description
Reduces agent file token consumption by 69% (662→203 lines) while preserving essential instructions. Adds developer tooling following SarifMark patterns for improved workflow: VS Code tasks and cross-platform build/lint scripts.
Changes
Agent file optimization: Converted verbose documentation to Quick Reference format
AGENTS.md: 213→64 lines (70% reduction).github/agents/documentation-writer.md: 112→47 lines (58% reduction).github/agents/project-maintainer.md: 201→54 lines (73% reduction).github/agents/software-quality-enforcer.md: 136→38 lines (72% reduction)VS Code tasks (
.vscode/tasks.json): Standard tasks for build, test, format, lint (markdown/spell/YAML), coverage, requirements verificationCross-platform scripts: Build and lint scripts for command-line usage
build.bat/build.sh: Build and test scripts for Windows and Unixlint.bat/lint.sh: Run all linters (markdown, spell check, YAML, code formatting)Dependency update: SarifMark 1.0.1→1.1.0
Type of Change
Pre-Submission Checklist
Build and Test
dotnet build --configuration Releasedotnet test --configuration ReleaseCode Quality
dotnet format --verify-no-changesQuality Checks
Please run the following checks before submitting:
cspell "**/*.{md,cs}"markdownlint "**/*.md"yamllint '**/*.{yml,yaml}'Testing
Documentation
Additional Notes
Token efficiency improvements enable more context in agent conversations while maintaining instruction quality. VS Code tasks and command-line scripts standardize common operations across team, supporting both IDE and terminal-based workflows on Windows and Unix systems.
Original prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.