docs: add project conventions and constraints documentation - #98
Merged
Conversation
Add CLAUDE.md (project configuration for tooling), CONVENTIONS.md (coding conventions and standards), and docs/constraints.md (deployment constraints) to establish development standards for the repository. Implements TC-5194 Assisted-by: Claude Code
CLAUDE.md contains project-specific Jira cloud IDs and configuration that should not be committed to the repository. Implements TC-5194 Assisted-by: Claude Code
Reviewer's GuideAdds project-wide coding conventions for Helm-based charts and documents deterministic architectural constraints for SDLC workflow skills, commits, PRs, and task templates. Flow diagram for SDLC workflow steps and documented constraintsflowchart LR
plan_feature[plan-feature skill]
define_feature[define-feature skill]
implement_task[implement-task skill]
jira_task[Jira task]
git_commit[Git commit]
pull_request[Pull request]
constraints_docs[docs/constraints.md]
plan_feature --> jira_task
define_feature --> jira_task
jira_task --> implement_task
implement_task --> git_commit
git_commit --> pull_request
constraints_docs --- plan_feature
constraints_docs --- define_feature
constraints_docs --- implement_task
constraints_docs --- git_commit
constraints_docs --- pull_request
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Hey - I've left some high level feedback:
- The hard-coded Helm version and schema generation command in
CONVENTIONS.mdmay become outdated over time; consider referencing a single canonical script or makefile target instead of embedding the full command and version here. - Several rules in
docs/constraints.mdduplicate information from the referenced SKILL/methodology files; you might want to note how this document will be kept in sync (or partially generated) to avoid drift between sources.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- The hard-coded Helm version and schema generation command in `CONVENTIONS.md` may become outdated over time; consider referencing a single canonical script or makefile target instead of embedding the full command and version here.
- Several rules in `docs/constraints.md` duplicate information from the referenced SKILL/methodology files; you might want to note how this document will be kept in sync (or partially generated) to avoid drift between sources.Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
ctron
reviewed
Jul 14, 2026
Address reviewer feedback to document helm-unittest plugin usage in the Testing Conventions section of CONVENTIONS.md. Implements TC-5194 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
ctron
approved these changes
Jul 15, 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.
Summary
CONVENTIONS.mddocumenting coding conventions for the Trustify Helm charts:nindentusage)required,default,with,if)docs/constraints.mddocumenting deployment constraintsTest plan
CONVENTIONS.mdis accurate against the current codebase patternsdocs/constraints.mdreflects current deployment constraintsImplements TC-5194