{"id":42363796,"url":"https://github.com/fraim-dev/fraim-action","last_synced_at":"2026-01-27T17:52:58.995Z","repository":{"id":304227948,"uuid":"1012152506","full_name":"fraim-dev/fraim-action","owner":"fraim-dev","description":"A Github Action to run Fraim in your CI","archived":false,"fork":false,"pushed_at":"2025-11-06T23:24:56.000Z","size":66,"stargazers_count":8,"open_issues_count":3,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-07T01:14:15.696Z","etag":null,"topics":["ai","llm","security","security-audit","security-automation","security-scan","security-tools","security-vulnerability","threat-detection"],"latest_commit_sha":null,"homepage":"https://docs.fraim.dev","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fraim-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-07-01T22:41:20.000Z","updated_at":"2025-11-06T19:01:50.000Z","dependencies_parsed_at":"2025-07-11T20:29:22.180Z","dependency_job_id":"722cf164-30c3-4d9c-acfa-8c65daef16ec","html_url":"https://github.com/fraim-dev/fraim-action","commit_stats":null,"previous_names":["fraim-dev/fraim-action"],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/fraim-dev/fraim-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fraim-dev%2Ffraim-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fraim-dev%2Ffraim-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fraim-dev%2Ffraim-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fraim-dev%2Ffraim-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fraim-dev","download_url":"https://codeload.github.com/fraim-dev/fraim-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fraim-dev%2Ffraim-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28817594,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T12:25:15.069Z","status":"ssl_error","status_checked_at":"2026-01-27T12:25:05.297Z","response_time":168,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","llm","security","security-audit","security-automation","security-scan","security-tools","security-vulnerability","threat-detection"],"created_at":"2026-01-27T17:52:58.106Z","updated_at":"2026-01-27T17:52:58.986Z","avatar_url":"https://github.com/fraim-dev.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AI-powered Security Workflows\n\nFraim provides specialized AI-powered workflows for different types of security analysis. Each workflow is optimized for specific use cases and file types, allowing you to choose the right tool for your security needs.\n\n## Available Workflows\n\n### ⚠️ Risk Flagger\n**Workflow ID**: `risk_flagger`\n\nIdentifies code changes that require security team review and investigation. Integrates with Github and allows you to loop in a reviewer and block a PR until that reviewer approves.\n\n[Docs](https://docs.fraim.dev/workflows/risk_flagger#github-actions)\n\n```bash\nname: Risk Assessment\non:\n  pull_request:\n    branches: [dev]\n  pull_request_review:\n    types: [submitted]\n\njobs:\n  risk-assessment:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v3\n        with:\n          fetch-depth: 0\n      \n      - name: Run Fraim Risk Flagger Scan\n        id: fraim-scan\n        uses: fraim-dev/fraim-action@v0\n        with:\n          anthropic-api-key: ${{ secrets.ANTHROPIC_API_KEY }}\n          workflow: risk_flagger\n          workflow_args: |\n            {\n              \"approver\": \"security\",\n              \"should-block-pull-request\": true,\n              \"custom-risk-list-json\": {\n                \"Change Protection\": \"All changes to sensitive_data.py should be flagged.\",\n                \"API Changes\": \"Any modifications to API endpoints require security review.\"\n              },\n              \"custom-risk-list-action\": \"replace\",\n              \"chunk-size\": 5000,\n              \"confidence\": 7\n            }\n          github-token: ${{ secrets.GH_TOKEN }}\n```\n\n### 🔍 Code Security Analysis\n**Workflow ID**: `code`\n\nStatic analysis of application source code for security vulnerabilities.\n\n[Docs](https://docs.fraim.dev/workflows/code#github-actions)\n\n```bash\nname: Code Security Analysis\non:\n  pull_request:\n    branches: [main]\n\njobs:\n  security-scan:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v3\n      \n      - name: Run Fraim Code Security Scan\n        uses: fraim-dev/fraim-action@94198c06f33e74d44d94261c25423ca972b51031\n        with:\n          anthropic-api-key: ${{ secrets.ANTHROPIC_API_KEY }}\n          workflow: code\n```\n\n### 🏗️ Infrastructure as Code Analysis\n**Workflow ID**: `iac`\n\nSecurity analysis of infrastructure configuration files and deployment manifests.\n\n[Docs](https://docs.fraim.dev/workflows/iac#github-actions)\n\n```bash\nname: IaC Security\non:\n  pull_request:\n    branches: [main]\n\njobs:\n  iac-security:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v3\n      \n      - name: Run Fraim IaC Security Scan\n        uses: fraim-dev/fraim-action@94198c06f33e74d44d94261c25423ca972b51031\n        with:\n          anthropic-api-key: ${{ secrets.ANTHROPIC_API_KEY }}\n          workflow: iac\n```\n\n### 📋 System Analysis\n**Workflow ID**: `system_analysis`\n\nExtracts system purpose, users, and business context from codebases and documentation.\n\n[Docs](https://docs.fraim.dev/workflows/system_analysis#github-actions)\n\n```bash\nname: System Analysis\non:\n  workflow_dispatch:\n    inputs:\n      business_context:\n        description: 'Business context for analysis'\n        required: false\n        default: 'Web application'\n\njobs:\n  system-analysis:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v3\n      \n      - name: Run Fraim System Analysis\n        uses: fraim-dev/fraim-action@94198c06f33e74d44d94261c25423ca972b51031\n        with:\n          anthropic-api-key: ${{ secrets.ANTHROPIC_API_KEY }}\n          workflow: system_analysis\n          workflow_args: |\n            {\n              \"business-context\": \"${{ github.event.inputs.business_context }}\",\n              \"focus-areas\": [\"security\", \"authentication\", \"data_processing\"]\n            }\n      \n      - name: Upload Analysis\n        uses: actions/upload-artifact@v3\n        with:\n          name: system-analysis\n          path: fraim_output/system_analysis_*.json\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffraim-dev%2Ffraim-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffraim-dev%2Ffraim-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffraim-dev%2Ffraim-action/lists"}