Apply TemplateDotNetTool PR #76 - Agent and lint cleanup#45
Apply TemplateDotNetTool PR #76 - Agent and lint cleanup#45Malcolmnixon merged 5 commits intomainfrom
Conversation
Agent-Logs-Url: https://github.com/demaconsulting/VersionMark/sessions/5e9be18e-a517-462b-82a7-7f7b54aabeba Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
Ports TemplateDotNetTool PR #76 into VersionMark by restructuring Copilot agents around a standards-delegation model, introducing reusable standards documents, and updating lint/CI configuration to reduce noise and ignore the new agent log directory.
Changes:
- Replaced the previous role-based agent set with
developer,implementation, andquality, and updatedcode-review/repo-consistencyguidance. - Added
.github/standards/documentation to be loaded on-demand by agents; updatedAGENTS.mdaccordingly. - Updated linting/workflow configs to quiet output and exclude
.agent-logs/from linting and git tracking.
Reviewed changes
Copilot reviewed 23 out of 24 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
lint.sh |
Adds --quiet to cspell invocation to reduce output noise. |
lint.bat |
Adds --quiet to cspell invocation to reduce output noise. |
AGENTS.md |
Rewrites agent guidance to standards-delegation model and .agent-logs/ reporting. |
.yamllint.yaml |
Ignores .agent-logs/ during YAML linting. |
.markdownlint-cli2.yaml |
Disables banner/progress output; ignores .agent-logs/. |
.gitignore |
Ignores .agent-logs/ directory. |
.github/workflows/build.yaml |
Removes explicit ReviewMark --definition argument. |
.github/standards/csharp-language.md |
Adds reusable C# coding standards. |
.github/standards/csharp-testing.md |
Adds reusable MSTest standards and antipattern guidance. |
.github/standards/reqstream-usage.md |
Adds reusable ReqStream usage/quality guidance. |
.github/standards/reviewmark-usage.md |
Adds reusable ReviewMark usage/quality guidance. |
.github/standards/software-items.md |
Adds reusable software item categorization guidance. |
.github/standards/technical-documentation.md |
Adds reusable technical documentation standards and doc-structure guidance. |
.github/agents/repo-consistency.agent.md |
Updates agent workflow + .agent-logs/ reporting template. |
.github/agents/quality.agent.md |
Adds new quality checklist agent. |
.github/agents/implementation.agent.md |
Adds new implementation orchestrator agent (state machine). |
.github/agents/developer.agent.md |
Adds new general-purpose developer agent. |
.github/agents/code-review.agent.md |
Updates formal review guidance and report template. |
.github/agents/requirements.agent.md |
Removes deprecated role-based agent. |
.github/agents/software-developer.agent.md |
Removes deprecated role-based agent. |
.github/agents/test-developer.agent.md |
Removes deprecated role-based agent. |
.github/agents/technical-writer.agent.md |
Removes deprecated role-based agent. |
.github/agents/code-quality.agent.md |
Removes deprecated role-based agent. |
.cspell.yaml |
Excludes .agent-logs/ from spell checking. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
…uirements.txt Agent-Logs-Url: https://github.com/demaconsulting/VersionMark/sessions/ab260be0-ab56-4404-a31d-2d9a3d62d7ac Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com>
Agent-Logs-Url: https://github.com/demaconsulting/VersionMark/sessions/ab260be0-ab56-4404-a31d-2d9a3d62d7ac Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com>
|
Just as a heads up, I was blocked by some firewall rules while working on your feedback. Expand below for details. Warning Firewall rules blocked me from connecting to one or more addresses (expand for details)I tried to connect to the following addresses, but was blocked by firewall rules:
If you need me to access, download, or install something from one of these locations, you can either:
|
|
@copilot Not sure why you checked in the .venv but you need to get that crap out of the commit - also check why you even thought it was appropriate considering the template .gitignore excludes it. |
Root cause: the f5c90f0 commit missed adding It was removed from tracking in e8e30c8 and Removing those intermediate commits requires a force-push, which the push mechanism here doesn't support (it does a fetch+rebase). The commits 28f48e6 and e8e30c8 remain in the branch history but the PR's net diff is clean. Warning Firewall rules blocked me from connecting to one or more addresses (expand for details)I tried to connect to the following addresses, but was blocked by firewall rules:
If you need me to access, download, or install something from one of these locations, you can either:
|
…use plan.md/report.md for ReviewMark Agent-Logs-Url: https://github.com/demaconsulting/VersionMark/sessions/c40bb08a-6ac9-4a20-b8a8-a83c5eff4acc Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com>
|
Just as a heads up, I was blocked by some firewall rules while working on your feedback. Expand below for details. Warning Firewall rules blocked me from connecting to one or more addresses (expand for details)I tried to connect to the following addresses, but was blocked by firewall rules:
If you need me to access, download, or install something from one of these locations, you can either:
|
Pull Request
Description
Ports TemplateDotNetTool#76 — replaces the monolithic role-based agent model with a leaner standards-delegation model.
Agent restructure:
code-quality,requirements,software-developer,technical-writer,test-developerdeveloper(general-purpose, standards-based),implementation(RESEARCH→DEVELOPMENT→QUALITY→REPORT state machine),quality(compliance checklist grader)code-reviewandrepo-consistencyto use.agent-logs/-based reportingNew
.github/standards/directory — 6 reusable standards files agents load on demand:csharp-language.md,csharp-testing.md,reqstream-usage.md,reviewmark-usage.md,software-items.md,technical-documentation.mdAGENTS.mdrewritten around the standards-delegation model; agent report convention moved fromAGENT_REPORT_*.mdto.agent-logs/[agent]-[subject]-[id].mdTooling/config:
lint.sh/lint.bat: replaced with template versions — installs npm and pip dependencies, runs all linters collecting errors before exiting (noset -e/ fail-fast)pip-requirements.txt: added to support yamllint installation in lint scripts.gitignore: added.venv/(present in template.gitignore) and.agent-logs/.markdownlint-cli2.yaml: addednoBannerandnoProgress.cspell.yaml,.markdownlint-cli2.yaml,.yamllint.yaml: exclude.agent-logs/build.yaml: removed--definition .reviewmark.yaml(auto-discovered by ReviewMark)CI alignment with DEMA standards:
review-plan.md→plan.mdandreview-report.md→report.md(and corresponding.htmlfiles) inbuild.yamlanddefinition.yamlfiles.gitignoreupdated to reference the correct standard ReviewMark output pathsdocs/guide/renamed todocs/user_guide/to match DEMA standard; all references updated inbuild.yaml,docs/user_guide/definition.yaml,AGENTS.mdType of Change
Related Issues
Pre-Submission Checklist
Before submitting this pull request, ensure you have completed the following:
Build and Test
dotnet build --configuration Releasedotnet test --configuration Releasedotnet run --project src/DemaConsulting.VersionMark --configuration Release --framework net10.0--no-build -- --validateCode Quality
dotnet format --verify-no-changesQuality Checks
Please run the following checks before submitting:
cspell "**/*.{md,cs}"markdownlint "**/*.md"yamllint .Testing
Documentation
Additional Notes
No functional code changes — agent and configuration files only.
🔒 GitHub Advanced Security automatically protects Copilot coding agent pull requests. You can protect all pull requests by enabling Advanced Security for your repositories. Learn more about Advanced Security.