-
Notifications
You must be signed in to change notification settings - Fork 2
SECURITY
github-actions[bot] edited this page Jul 1, 2026
·
3 revisions
Security practices and vulnerability reporting for the workstation platform.
- No credentials are stored in source control
- Secrets are consumed via environment variables only
- MCP templates ship with placeholder values — never real tokens
- CI includes security scanners via MegaLinter v9
Store secrets in ~/.config/agentic-workstation/env.d/:
# Example: Jira credentials
cat > ~/.config/agentic-workstation/env.d/jira.env << 'EOF'
export JIRA_SITE_URL="https://your-company.atlassian.net"
export JIRA_EMAIL="you@company.com"
export JIRA_API_TOKEN="your-api-token"
EOFLoad with dots-loadenv or source directly.
- Do not open a public issue with exploit details
- Contact the agentic-workstation Technology team through internal channels
- Include reproduction details, impact, and affected files
| Check | Workflow |
|---|---|
| Secret scanning | security-scan.yml |
| Dependency audit | dependabot.yml |
| Code quality | megalinter-v9.yml |
| Pre-commit hooks | pre-commit.yml |
Canonical doc: SECURITY.md