Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
30 changes: 30 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
version: 2
updates:
# Keep CI actions up to date — minimal risk, weekly cadence
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly
labels:
- dependencies
- github-actions

# If this repo has Node dependencies, uncomment the block below + remove the comment marker
# - package-ecosystem: npm
# directory: "/"
# schedule:
# interval: weekly
# open-pull-requests-limit: 5
# labels:
# - dependencies
# groups:
# minor-and-patch:
# update-types:
# - minor
# - patch

# If this repo has Python dependencies, uncomment + adapt path:
# - package-ecosystem: pip
# directory: "/"
# schedule:
# interval: weekly
5 changes: 5 additions & 0 deletions .github/workflows/security-baseline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
name: security-baseline
on: [pull_request, push]
jobs:
scan:
uses: aks129/security-baseline/.github/workflows/scan-reusable.yml@main

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {}
17 changes: 17 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,20 @@ mcp-server/dist/
mcp-server/node_modules/
mcp-app/dist/
mcp-app/node_modules/

# --- security-baseline additions ---
# Claude Code / agent workspace state (never commit)
.claude/
.superpowers/
claude-*.tmp

# Strategy + outreach drafts (gitignored — local-only)
.private/

# Environment files (use .env.example for templates instead)
.env
.env.local
.env.*.local

# GCP/GitHub Actions service-account creds written by google-github-actions/auth
gha-creds-*.json
Loading