chore: add best-practice repo structure and CI#5
Merged
Conversation
Add production-grade repo scaffolding: - CLAUDE.md — skill collection discovery for Claude Code/Desktop with repo structure, conventions, security model, and run instructions - LICENSE — Apache 2.0 (was referenced in README but file was missing) - SECURITY.md — vulnerability reporting policy with response SLAs - CONTRIBUTING.md — guidelines for adding new skills with SKILL.md frontmatter requirements and code standards - .gitignore — comprehensive Python/Terraform/IDE/secrets exclusions (was only __pycache__/) - pyproject.toml — ruff, bandit, pytest configuration for repo-level tooling - .github/workflows/ci.yml — 4-job CI pipeline: - lint (ruff check + format) - test-iam-departures (pytest with moto) - validate-cloudformation (cfn-lint on both templates) - validate-terraform (terraform init + validate) - security-scan (bandit + hardcoded secret grep) README enhanced: - Added CI, license, Python version badges - Replaced ASCII architecture diagrams with Mermaid flowcharts (renders natively on GitHub, dark-theme compatible) - Added Mermaid diagrams for all 3 architectures: IAM departures, CSPM benchmarks, vuln remediation pipeline - Added security model Mermaid diagram (zero trust / least privilege / defense in depth) - Expanded compliance framework mapping table with OWASP + PCI DSS - Added contributing and security sections with links - Added agent-bom skills scan to quick start SKILL.md files already follow Anthropic's skill spec: - Frontmatter: name, description (with trigger phrases), license, compatibility, metadata (author, version, frameworks, cloud) - "Use when the user mentions..." pattern for Claude invocation - Each SKILL.md has architecture diagrams, compliance mappings, deployment instructions, and usage examples
…ix unused variable, use pyproject.toml config
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
Production-grade repo scaffolding for the cloud-security skills collection.
New files
CLAUDE.mdLICENSESECURITY.mdCONTRIBUTING.md.github/workflows/ci.ymlpyproject.tomlREADME enhancements
SKILL.md compliance
All 5 SKILL.md files already follow Anthropic's skill spec:
name,description(with "Use when the user mentions..." trigger phrases),license,compatibility,metadataTest plan