-
Notifications
You must be signed in to change notification settings - Fork 0
Add SysML2 architecture model and enhance documentation compliance #110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
9415585
Add SysML2 architecture model and remediate documentation compliance …
c141b14
Add SysML2Tools OTS item and fix introduction.md References sections
d9b3875
Fix CI failure: add missing SysML2Tools self-validation step and File…
ed4ace4
Fix heading depth in docs/verification/ots/*.md files
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28,6 +28,7 @@ words: | |
| - SARIF | ||
| - sarifmark | ||
| - sonarmark | ||
| - sysml | ||
| - versionmark | ||
| - Weasy | ||
| - WeasyPrint | ||
|
|
||
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,134 @@ | ||
| --- | ||
| name: planning | ||
| description: Planning agent that investigates the codebase, develops a verified implementation plan, and identifies all companion artifact deliverables. | ||
| user-invocable: true | ||
| --- | ||
|
|
||
| # Planning Agent | ||
|
|
||
| Investigate the codebase and produce a verified implementation plan with all | ||
| companion artifact deliverables. | ||
|
|
||
| ## Step 1 — Load Standards | ||
|
|
||
| Read the relevant standards from `.github/standards/` using the selection matrix | ||
| in `AGENTS.md` based on the artifact types in scope for the request (requirements, | ||
| design, verification, documentation, code). | ||
|
|
||
| ## Step 2 — Investigate and Plan | ||
|
|
||
| Read `docs/design/introduction.md` first (if present), then investigate the | ||
| codebase to develop a concrete implementation plan: | ||
|
|
||
| - Identify all files to create, modify, or delete | ||
| - Describe the change required for each file | ||
|
|
||
| ## Step 3 — Identify Companion Artifact Deliverables | ||
|
|
||
| For each planned change, assess the mandatory companion artifacts below (create/update/N/A | ||
| with justification): | ||
|
|
||
| - **Requirements** — functional changes require a requirement entry | ||
| - **Design Documentation** — new or changed components require design docs | ||
| - **Verification Documentation** — new or changed components require verification docs | ||
| - **Tests** — functional changes require test coverage | ||
| - **Review Sets** — changes to the software item hierarchy (units or subsystems | ||
| added, removed, or reorganized) require review-set updates | ||
| - **README.md** — user-facing changes require README updates | ||
| - **User Guide** — user-facing features require user guide updates | ||
|
|
||
| ## Step 4 — Critique and Strengthen | ||
|
|
||
| Identify up to 5 key assumptions and rate each: | ||
|
|
||
| - **VERIFIED**: confirmed by codebase evidence | ||
| - **LIKELY**: consistent with codebase patterns but not directly confirmed | ||
| - **UNVERIFIED**: not confirmed by any evidence | ||
|
|
||
| For UNVERIFIED or LIKELY assumptions, investigate further and revise the plan. | ||
| Repeat up to 2 more times, stopping when the plan is stable. | ||
|
|
||
| ## Step 5 — Risk Assessment | ||
|
|
||
| List up to 5 risks with a brief mitigation for each. | ||
|
|
||
| ## Step 6 — Feasibility Assessment | ||
|
|
||
| State whether this can be implemented in a single development pass and any | ||
| preconditions that affect feasibility. | ||
|
|
||
| ## Step 7 — Recommendation | ||
|
|
||
| - **SUCCEEDED** — the plan is sound and the developer agent can proceed | ||
| - **INCOMPLETE** — critical unknowns remain that only the user can resolve; | ||
| list each unknown explicitly | ||
| - **FAILED** — investigation could not produce a viable plan | ||
|
|
||
| # REPORT Phase | ||
|
|
||
| Save the full analysis to `.agent-logs/planning-{subject}-{unique-id}.md` per | ||
| the AGENTS.md reporting requirements. | ||
|
|
||
| Then respond to the caller with ONLY the lean structured summary below. | ||
|
|
||
| # Report Template | ||
|
|
||
| ```markdown | ||
| # Planning Report | ||
|
|
||
| **Result**: (SUCCEEDED|INCOMPLETE|FAILED) | ||
| **Request Summary**: {Brief restatement of the task as understood} | ||
| **Report**: `.agent-logs/planning-{subject}-{unique-id}.md` | ||
|
|
||
| ## Implementation Plan | ||
|
|
||
| | File | Action | Description | | ||
| |------|--------|-------------| | ||
| | {path} | create/modify/delete | {what changes and why} | | ||
|
|
||
| ## Companion Artifact Deliverables | ||
|
|
||
| | Category | File | Action | | ||
| |----------|------|--------| | ||
| | Requirements | {path} | create/update/N/A — {justification} | | ||
| | Design Documentation | {path} | create/update/N/A — {justification} | | ||
| | Verification Documentation | {path} | create/update/N/A — {justification} | | ||
| | Tests | {path} | create/update/N/A — {justification} | | ||
| | Review Sets | {path} | create/update/N/A — {justification} | | ||
| | README.md | {path} | create/update/N/A — {justification} | | ||
| | User Guide | {path} | create/update/N/A — {justification} | | ||
|
|
||
| ## Assumption Analysis | ||
|
|
||
| | # | Assumption | Rating | Resolution | | ||
| |---|-----------|--------|------------| | ||
| | 1 | {assumption} | VERIFIED/LIKELY/UNVERIFIED | {resolution or N/A} | | ||
|
|
||
| ## Risk Assessment | ||
|
|
||
| 1. **[severity]** {risk} — {mitigation} | ||
|
|
||
| ## Feasibility Assessment | ||
|
|
||
| {Single-pass or not, and why. Any preconditions.} | ||
|
|
||
| ## Unknowns | ||
|
|
||
| {Only present when Result is INCOMPLETE. List each question the user must | ||
| resolve before implementation can proceed.} | ||
| ``` | ||
|
|
||
| # Lean Structured Response (returned to caller) | ||
|
|
||
| ```markdown | ||
| **Result**: (SUCCEEDED|INCOMPLETE|FAILED) | ||
| **Report**: `.agent-logs/planning-{subject}-{unique-id}.md` | ||
|
|
||
| **Plan**: | ||
| {Repeat the Implementation Plan table} | ||
|
|
||
| **Companion Artifacts**: | ||
| {Repeat the Companion Artifact Deliverables table} | ||
|
|
||
| **Unknowns**: {Only if INCOMPLETE — list questions for the user} | ||
| ``` | ||
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.