Apply TemplateDotNetTool PR #76 - Agent and lint cleanup#140
Merged
Malcolmnixon merged 3 commits intomainfrom Mar 29, 2026
Merged
Apply TemplateDotNetTool PR #76 - Agent and lint cleanup#140Malcolmnixon merged 3 commits intomainfrom
Malcolmnixon merged 3 commits intomainfrom
Conversation
- Add `**/.agent-logs/**` to .cspell.yaml ignorePaths - Add `.agent-logs/` to .gitignore - Add noBanner/noProgress to .markdownlint-cli2.yaml; exclude .agent-logs/ - Add .agent-logs/ to .yamllint.yaml ignore list - Remove old agents: code-quality, requirements, software-developer, technical-writer, test-developer - Add new agents: developer, implementation, quality - Update agents: code-review, repo-consistency (new .agent-logs/ reporting) - Add .github/standards/ directory with 6 standards files - Rewrite AGENTS.md around standards-delegation model - Add --silent/--quiet flags to npm/pip commands in lint scripts - Add --quiet flag to cspell in lint scripts - Remove --definition .reviewmark.yaml from build.yaml (auto-discovered) - Add antipatterns, nameof, passwordvalidator to cspell word list Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com>
Agent-Logs-Url: https://github.com/demaconsulting/ReqStream/sessions/982228c4-b654-4cb5-9bb6-b564de496e88 Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Merge pull request #76 from demaconsulting
Apply TemplateDotNetTool PR #76 - Agent and lint cleanup
Mar 29, 2026
Malcolmnixon
approved these changes
Mar 29, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Ports TemplateDotNetTool#76’s “standards-driven” agent model into ReqStream, adds reusable standards docs under .github/standards/, and reduces/noises output from lint tooling while excluding .agent-logs/ across repo tooling configs.
Changes:
- Restructure agent definitions: remove legacy role-based agents and add
developer,implementation,quality, plus updates tocode-review/repo-consistency. - Add
.github/standards/*.mdreference standards and rewriteAGENTS.mdto delegate to those standards. - Quiet/suppress linter tool output and exclude
.agent-logs/from git + lint tools; simplify ReviewMark invocation in CI.
Reviewed changes
Copilot reviewed 23 out of 24 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
lint.sh |
Quiet npm/pip/cspell output for CI readability. |
lint.bat |
Quiet npm/pip/cspell output for CI readability (Windows). |
AGENTS.md |
Rewritten guidance for standards-driven agents and .agent-logs/ reporting. |
.yamllint.yaml |
Excludes .agent-logs/ from YAML linting. |
.markdownlint-cli2.yaml |
Suppresses banner/progress; excludes .agent-logs/. |
.gitignore |
Ignores .agent-logs/. |
.github/workflows/build.yaml |
Removes explicit ReviewMark --definition arg. |
.github/standards/csharp-language.md |
Adds C# coding standards reference. |
.github/standards/csharp-testing.md |
Adds MSTest/AAA/testing standards reference. |
.github/standards/reqstream-usage.md |
Adds ReqStream usage/requirements standards reference. |
.github/standards/reviewmark-usage.md |
Adds ReviewMark usage standards reference. |
.github/standards/software-items.md |
Adds software item categorization standards reference. |
.github/standards/technical-documentation.md |
Adds documentation/Pandoc/README standards reference. |
.github/agents/test-developer.agent.md |
Removes legacy agent definition. |
.github/agents/technical-writer.agent.md |
Removes legacy agent definition. |
.github/agents/software-developer.agent.md |
Removes legacy agent definition. |
.github/agents/requirements.agent.md |
Removes legacy agent definition. |
.github/agents/code-quality.agent.md |
Removes legacy agent definition. |
.github/agents/developer.agent.md |
Adds new general-purpose standards-based agent. |
.github/agents/implementation.agent.md |
Adds orchestration/state-machine agent. |
.github/agents/quality.agent.md |
Adds standards compliance grading agent. |
.github/agents/code-review.agent.md |
Updates formal review workflow and reporting guidance. |
.github/agents/repo-consistency.agent.md |
Updates workflow and .agent-logs/ reporting guidance. |
.cspell.yaml |
Adds words and excludes .agent-logs/ from spell checking. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This was referenced Apr 6, 2026
6 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.
Pull Request
Description
Ports TemplateDotNetTool#76 into this repository — replacing monolithic role-based agents with a leaner standards-driven model and adding
.agent-logs/exclusions across tooling config.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-consistencywith structured workflow and.agent-logs/-based reportingNew
.github/standards/directory with 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.Tooling/config:
lint.sh/lint.bat: added--silent(npm),--quiet --disable-pip-version-check(pip),--quiet(cspell).markdownlint-cli2.yaml: addednoBannerandnoProgress.cspell.yaml,.gitignore,.markdownlint-cli2.yaml,.yamllint.yaml: exclude.agent-logs/build.yaml: removed--definition .reviewmark.yaml(auto-discovered by ReviewMark)Type 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.ReqStream --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/configuration files only.
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:
https://api.github.com/graphql/usr/bin/gh gh pr view 76 --repo demaconsulting/TemplateDotNetTool --json title,body,files(http block)https://api.github.com/repos/demaconsulting/TemplateDotNetTool/contents/.github/agents/usr/bin/curl curl -s REDACTED(http block)https://api.github.com/repos/demaconsulting/TemplateDotNetTool/contents/.github/standards/usr/bin/curl curl -s REDACTED(http block)https://storage.googleapis.com/chromium-browser-snapshots/Linux_x64/1108766/chrome-linux.zip/home/REDACTED/work/_temp/ghcca-node/node/bin/node node install.js(http block)/home/REDACTED/work/_temp/ghcca-node/node/bin/node node install.js --destination-port 53 -j ACCEPT st-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll(http block)If you need me to access, download, or install something from one of these locations, you can either:
📍 Connect Copilot coding agent with Jira, Azure Boards or Linear to delegate work to Copilot in one click without leaving your project management tool.