Fix issues and enhance documentation for project health#66
Merged
Conversation
* Fix issue template yamllint warnings * Claude support files * bug fix with terraform validation in CLI * Updated docs to be UV native * Docs fix + test case bug fix * Update .claude/rules/code-style.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * PR fixes * PR fixes --------- Co-authored-by: Srihari Raman <raman.sr@northeastern.edu> Co-authored-by: Srihari Raman <srihariraman@Sriharis-MacBook-Pro.local> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Srihari Raman <srihariraman@Sriharis-MacBook-Pro.local>
This was
linked to
issues
Apr 29, 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.
This pull request introduces a comprehensive set of documentation and configuration files that define conventions, workflows, and automation for plugin development, testing, infrastructure, and deployment in the OpenContext project. The changes standardize best practices for Python code style, plugin interface requirements, test structure, AWS/Terraform infrastructure, and provide skill definitions for common workflows. Additionally, it adds agent definitions for automated code review and test writing, as well as settings for tool permissions and formatting hooks.
The most important changes are:
Plugin Development & Code Style
.claude/rules/plugin-development.mdand.claude/rules/code-style.mdto define strict conventions for plugin interface implementation, required class attributes and methods, code style (imports, type hints, docstrings, logging, naming), and error handling. These ensure plugins are discoverable and maintainable. [1] [2].claude/agents/plugin-validator.md, a specialized agent for reviewing plugin code against the MCPPlugin interface, with a detailed checklist for correctness.Testing Conventions & Automation
.claude/rules/testing.mdand.claude/agents/test-writer.mdto enforce pytest test structure, mocking patterns, coverage requirements, and to automate test writing for plugins and core modules. [1] [2]Infrastructure & Deployment
.claude/rules/infrastructure.md, including state management, workspace naming, variable handling, and validation steps..claude/skills/deploy-aws/SKILL.mdand.claude/skills/debug-lambda/SKILL.md, with step-by-step workflows and troubleshooting guides. [1] [2]Automation & Permissions
.claude/settings.jsonto manage tool permissions (allow/deny lists for commands and file access) and to automatically format Python files after edits usingruff.Skill-based Workflows
.claude/skills/add-plugin/SKILL.mdto standardize the process for creating and enabling new plugins, including scaffolding, implementation, testing, and common pitfalls.Closes #51