Skip to content
Merged
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
024509e
Extensive agent cleanup
Mar 29, 2026
f9f91b9
Lint cleanups
Mar 29, 2026
81cc28a
Address minor findings.
Mar 29, 2026
4728ace
Additional formatting cleanups.
Mar 29, 2026
fca3074
Update AGENTS.md
Malcolmnixon Mar 29, 2026
e111ec0
Update .github/standards/reqstream-usage.md
Malcolmnixon Mar 29, 2026
812cf37
Update .github/standards/csharp-testing.md
Malcolmnixon Mar 29, 2026
08b5d73
Update .github/standards/reviewmark-usage.md
Malcolmnixon Mar 29, 2026
bd500e6
Update .github/standards/software-items.md
Malcolmnixon Mar 29, 2026
59ff8df
Update AGENTS.md
Malcolmnixon Mar 29, 2026
c20b4ef
Update .github/standards/csharp-language.md
Malcolmnixon Mar 29, 2026
b9a2faf
Update .github/standards/technical-documentation.md
Malcolmnixon Mar 29, 2026
4d07322
Update .github/standards/csharp-testing.md
Malcolmnixon Mar 29, 2026
c3bcdf5
Update .github/standards/technical-documentation.md
Malcolmnixon Mar 29, 2026
e878f56
Update .github/standards/technical-documentation.md
Malcolmnixon Mar 29, 2026
4b94dbd
Update .github/standards/csharp-language.md
Malcolmnixon Mar 29, 2026
14830b9
Yet more cleanups.
Mar 29, 2026
c73c47d
Update .github/agents/developer.agent.md
Malcolmnixon Mar 29, 2026
cb96e6f
Update .github/agents/developer.agent.md
Malcolmnixon Mar 29, 2026
774cb85
Update .github/agents/quality.agent.md
Malcolmnixon Mar 29, 2026
2332043
Update .github/agents/repo-consistency.agent.md
Malcolmnixon Mar 29, 2026
06cb4d3
More cleanup
Mar 29, 2026
0dd89d8
Update .github/agents/repo-consistency.agent.md
Malcolmnixon Mar 29, 2026
de4c77a
Cleanup linting scripts to only print findings.
Mar 29, 2026
1df9ef0
Merge branch 'agent-cleanup' of https://github.com/demaconsulting/Tem…
Mar 29, 2026
2861bd6
Simplify ReviewMark usage.
Mar 29, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .cspell.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ ignorePaths:
- "**/third-party/**"
- "**/3rd-party/**"
- "**/AGENT_REPORT_*.md"
- "**/.agent-logs/**"
- "**/bin/**"
- "**/obj/**"
- package-lock.json
216 changes: 0 additions & 216 deletions .github/agents/code-quality.agent.md

This file was deleted.

73 changes: 50 additions & 23 deletions .github/agents/code-review.agent.md
Original file line number Diff line number Diff line change
@@ -1,46 +1,73 @@
---
name: code-review
description: Assists in performing formal file reviews.
tools: [read, search, edit, execute, github, web, agent]
description: Agent for performing formal reviews
user-invocable: true
---

# Code Review Agent

Execute comprehensive code reviews with emphasis on structured compliance verification and file review status
requirements.
This agent runs the formal review based on the review-set it's told to perform.

## Reporting
# Formal Review Steps

Create a report using the filename pattern `AGENT_REPORT_code_review_[review-set].md`
(e.g., `AGENT_REPORT_code_review_auth-module.md`) to document review criteria, identified issues, and recommendations
for the specific review-set.

## Review Steps
Formal reviews are a quality enforcement mechanism, and as such MUST be performed using the following four steps:

1. Download the
<https://github.com/demaconsulting/ContinuousCompliance/raw/refs/heads/main/docs/review-template/review-template.md>
to get the checklist to fill in
Comment thread
Malcolmnixon marked this conversation as resolved.
2. Use `dotnet reviewmark --elaborate [review-set]` to get the files to review
Comment thread
Malcolmnixon marked this conversation as resolved.
3. Review the files all together
4. Populate the checklist with the findings to make the report

## Hand-off to Other Agents

Only attempt to apply review fixes if requested.
4. Populate the checklist with the findings to `.agent-logs/reviews/review-report-[review-set].md` of the project.

- If code quality, logic, or structural issues need fixing, call the @software-developer agent
- If test coverage gaps or quality issues are identified, call the @test-developer agent
- If documentation accuracy or completeness issues are found, call the @technical-writer agent
- If quality gate verification is needed after fixes, call the @code-quality agent
- If requirements traceability issues are discovered, call the @requirements agent
# Don't Do These Things

## Don't Do These Things

- **Never modify code during review** (document findings only, delegate fixes)
- **Never modify code during review** (document findings only)
- **Never skip applicable checklist items** (comprehensive review required)
- **Never approve reviews with unresolved critical findings**
- **Never bypass review status requirements** for compliance
- **Never conduct reviews without proper documentation**
- **Never ignore security or compliance findings**
- **Never approve without verifying all quality gates**

# Reporting

Upon completion create a summary in `.agent-logs/[agent-name]-[subject]-[unique-id].md`
of the project consisting of:

```markdown
# Code Review Report

**Result**: <SUCCEEDED/FAILED>

## Review Summary

- **Review Set**: [Review set name/identifier]
- **Review Report File**: [Name of detailed review report generated]
- **Files Reviewed**: [Count and list of files reviewed]
- **Review Template Used**: [Template source and version]

## Review Results

- **Overall Conclusion**: [Summary of review results]
- **Critical Issues**: [Count of critical findings]
- **High Issues**: [Count of high severity findings]
- **Medium Issues**: [Count of medium severity findings]
- **Low Issues**: [Count of low severity findings]

## Issue Details

[For each issue found, include:]
- **File**: [File name and line number where applicable]
- **Issue Type**: [Security, logic error, compliance violation, etc.]
- **Severity**: [Critical/High/Medium/Low]
- **Description**: [Issue description]
- **Recommendation**: [Specific remediation recommendation]

## Compliance Status

- **Review Status**: [Complete/Incomplete with reasoning]
- **Quality Gates**: [Status of review checklist items]
- **Approval Status**: [Approved/Rejected with justification]
```

Return summary to caller.
49 changes: 49 additions & 0 deletions .github/agents/developer.agent.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
name: developer
description: >
General-purpose software development agent that applies appropriate standards
based on the work being performed.
user-invocable: true
---

# Developer Agent

Perform software development tasks by determining and applying appropriate DEMA Consulting standards from `.github/standards/`.

# Standards-Based Workflow

1. **Analyze the request** to identify scope: languages, file types, requirements, testing, reviews
2. **Read relevant standards** from `.github/standards/` as defined in AGENTS.md based on work performed
3. **Apply loaded standards** throughout development process
4. **Execute work** following standards requirements and quality checks
5. **Generate completion report** with results and compliance status

# Reporting

Upon completion create a summary in `.agent-logs/[agent-name]-[subject]-[unique-id].md`
of the project consisting of:

```markdown
# Developer Agent Report

**Result**: <SUCCEEDED/FAILED>

## Work Summary

- **Files Modified**: [List of files created/modified/deleted]
- **Languages Detected**: [Languages identified]
- **Standards Applied**: [Standards files consulted]

## Tooling Executed

- **Language Tools**: [Compilers, linters, formatters used]
- **Compliance Tools**: [ReqStream, ReviewMark tools used]
- **Validation Results**: [Tool execution results]

## Compliance Status

- **Quality Checks**: [Standards quality checks status]
- **Issues Resolved**: [Any problems encountered and resolved]
```

Return this summary to the caller.
Loading
Loading