{"id":48683681,"url":"https://github.com/theinfosecguy/razin","last_synced_at":"2026-04-11T03:41:52.503Z","repository":{"id":338290164,"uuid":"1157238965","full_name":"theinfosecguy/razin","owner":"theinfosecguy","description":"Static analysis scanner for SKILL.md LLM agent skills with deterministic security findings.","archived":false,"fork":false,"pushed_at":"2026-03-14T09:16:05.000Z","size":613,"stargazers_count":8,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-14T18:51:38.839Z","etag":null,"topics":["agentic-ai","ai-agents","cli","cybersecurity","llm","markdown","python","security","static-analysis","yaml"],"latest_commit_sha":null,"homepage":"https://theinfosecguy.github.io/razin/","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/theinfosecguy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","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":"2026-02-13T15:39:51.000Z","updated_at":"2026-03-14T11:45:24.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/theinfosecguy/razin","commit_stats":null,"previous_names":["theinfosecguy/razin"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/theinfosecguy/razin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theinfosecguy%2Frazin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theinfosecguy%2Frazin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theinfosecguy%2Frazin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theinfosecguy%2Frazin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/theinfosecguy","download_url":"https://codeload.github.com/theinfosecguy/razin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theinfosecguy%2Frazin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31668050,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-10T17:19:37.612Z","status":"online","status_checked_at":"2026-04-11T02:00:05.776Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["agentic-ai","ai-agents","cli","cybersecurity","llm","markdown","python","security","static-analysis","yaml"],"created_at":"2026-04-11T03:41:51.820Z","updated_at":"2026-04-11T03:41:52.492Z","avatar_url":"https://github.com/theinfosecguy.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003eRazin - Static analysis for LLM agent skills\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://github.com/user-attachments/assets/33c42667-0fff-4eac-a2d1-0f6d10441245\" alt=\"razin\" width=\"300\" height=\"300\" /\u003e\n\u003c/p\u003e\n\nRazin is a local scanner for `SKILL.md`-defined agent skills.\nIt performs static analysis only (no execution) and writes deterministic findings.\n\n## Table of contents\n\n- [Documentation](#documentation)\n- [Requirements](#requirements)\n- [Install](#install)\n- [Quick start](#quick-start)\n  - [Common CI gates](#common-ci-gates)\n  - [Output formats](#output-formats)\n- [Local development](#local-development)\n- [Where to read more](#where-to-read-more)\n- [Contributing](#contributing)\n- [Security](#security)\n- [License](#license)\n\n## Documentation\n\nFull documentation lives at:\n\n- https://theinfosecguy.github.io/razin/\n\nCanonical docs source in this repository:\n\n- `docs/`\n\nUse this README for quick start only.\n\n## Requirements\n\n- Python `3.12+`\n\n## Install\n\nWith Homebrew (current, via tap):\n\n```bash\nbrew tap theinfosecguy/homebrew-tap\nbrew install razin\nrazin --help\n```\n\nWith PyPI:\n\n```bash\npip install razin\nrazin --help\n```\n\n## Quick start\n\nRun a scan:\n\n```bash\nrazin scan -r . -o output/\n```\n\nValidate config:\n\n```bash\nrazin validate-config -r .\n```\n\n### Common CI gates\n\n```bash\n# Fail if any high-severity finding exists\nrazin scan -r . --fail-on high --no-stdout\n\n# Fail if aggregate score is 70 or above\nrazin scan -r . --fail-on-score 70 --no-stdout\n```\n\n### Output formats\n\n```bash\n# Default per-skill JSON reports\nrazin scan -r . -o output/ --output-format json\n\n# Add CSV + SARIF exports\nrazin scan -r . -o output/ --output-format json,csv,sarif\n```\n\n## Local development\n\n```bash\nuv sync --dev\nuv run pytest -q\nuv run ruff check src tests\nuv run mypy src tests\n```\n\nDocs preview and checks:\n\n```bash\nuv sync --group docs\nuv run mkdocs serve\nuv run mkdocs build --strict\nuv run mdformat --check README.md docs\n```\n\n## Where to read more\n\n- [Getting started](https://theinfosecguy.github.io/razin/getting-started/)\n- [CLI reference](https://theinfosecguy.github.io/razin/cli-reference/)\n- [Configuration](https://theinfosecguy.github.io/razin/configuration/)\n- [Detectors](https://theinfosecguy.github.io/razin/detectors/)\n- [Output formats](https://theinfosecguy.github.io/razin/output-formats/)\n- [Docker workflow](https://theinfosecguy.github.io/razin/docker/)\n- [CI and exit codes](https://theinfosecguy.github.io/razin/ci-and-exit-codes/)\n- [Troubleshooting](https://theinfosecguy.github.io/razin/troubleshooting/)\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md).\n\n## Security\n\nSee [SECURITY.md](SECURITY.md).\n\n## License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheinfosecguy%2Frazin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftheinfosecguy%2Frazin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheinfosecguy%2Frazin/lists"}