Featured

Deploy OpenClaw in 60 seconds โ€” 20% off logoDeploy OpenClaw in 60 seconds โ€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger โ†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger โ†’
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free โ†’
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now โ†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data โ€” no proxies, no parsers, no maintenance.

Start building free โ†’
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4โ€“50+ employees): we install, harden, integrate your tools, and maintain it โ€” secured from day one.

Get it set up for you โ†’
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free โ†’
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here โ†’

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

mcp-skylos MCP server](https://glama.ai/mcp/servers/@duriantaco/mcp-skylos/badges/score.svg)](https://glama.ai/mcp/servers/@duriantaco/mcp-skylos) ๐Ÿ ๐Ÿ  ๐ŸŽ ๐ŸชŸ ๐Ÿง - Dead code detection, security scanning, and code quality analysis for Python, TypeScript,...

README.md

![MCP Toplist](https://mcptoplist.com/server/io.github.duriantaco%2Fskylos)

<div align="center"> <img src="assets/DOG_1.png" alt="Skylos" width="260"> <h1>Skylos</h1> <h3>Open-source, local-first checks for dead code, security issues, secrets, quality regressions, and AI-code mistakes before merge.</h3> </div>

!License: Apache 2.0 ![codecov](https://codecov.io/gh/duriantaco/skylos) !PyPI - Python Version ![PyPI version](https://pypi.org/project/skylos/) !VS Code Marketplace ![Astronomer Trust](#star-authenticity-audit) ![Discord](https://discord.gg/Ftn9t9tErf)

Website | Docs | Repo Map | Quick Start | GitHub Action | VS Code Extension | Real-World Results | Benchmarks | Roadmap | Contributing

English | Deutsch | ็ฎ€ไฝ“ไธญๆ–‡ | Translations

What Is Skylos?

Skylos is an open-source static analysis CLI for Python, TypeScript, JavaScript, Java, Go, Kotlin, PHP, Rust, Dart, C#, Shell, and deployment config. It runs locally by default and can also be used as a CI/CD PR gate.

Use Skylos when you want one command to check a repo or pull request for:

  • dead code and unused files
  • security flaws and dangerous data flows
  • secrets and dependency CVEs
  • CI/CD and edge-device deployment misconfigurations
  • quality regressions such as complexity, duplicate branches, and deep nesting
  • common AI-generated code mistakes, including missing guards, fake helpers,

invented package APIs, and impossible dependency versions

  • LLM app risks such as unsafe tool use and missing output validation

Start In 60 Seconds

pip install skylos
skylos .

The default scan focuses on dead code. Add security, secrets, quality, dependency, and AI-defect checks with -a:

skylos . -a

Run only evidence-backed AI defect checks with:

skylos . --ai-defects

Verify a changed file or range before an agent hands it to review:

skylos verify . --file src/app.py --range 40:75 --project-context

skylos verify schema version 2 returns pass, fail, or incomplete. incomplete means a requested proof could not be established, such as a third-party TS/JS import, computed namespace member, unsupported language-local API check, or parser surface that Skylos could not prove; it exits 2 unless --no-fail is set. The coverage object lists detected languages, expected checks, language support, missing checks, completed/skipped checks, checked references, and deterministic skip reasons.

Deterministic local/workspace API verification currently covers Python, TypeScript/JavaScript, Go, and Java without executing target code. PHP, Rust, Dart, C#, Kotlin, and Shell retain their existing static-analysis coverage, but their local API proof is reported as unsupported and therefore incomplete. See AI Code Verification Coverage.

Create a local AI hallucination contract for repo-specific generated-code truth. skylos verify auto-discovers .skylos/ai-contract.yml:

skylos contract init
skylos contract inspect
skylos verify .

Test a running agent against deterministic response and tool-use scenarios:

skylos agent init
skylos agent test --allow-contract-endpoint

Create a project config with thresholds, ignores, template hooks, and vibe dictionary extensions:

skylos init

Create a starter local rule pack:

skylos rules init
skylos rules validate .skylos/rules/local.yml
skylos rules list --json
skylos rules list cross --json
skylos rules list --packs --json
skylos cache stats

Generate a GitHub Actions PR gate:

skylos cicd init
git add .github/workflows/skylos.yml
git commit -m "Add Skylos CI gate"
git push

Need more commands? Read the CLI Reference.

Common Workflows

| Goal | Command | What You Get | More Detail | |:---|:---|:---|:---| | First dead-code scan | skylos . | Finds unused functions, classes, imports, files, and framework entrypoint mistakes | Dead code docs | | Deterministic cleanup preview | skylos clean . --dry-run --types import,function --confidence 80 | Shows safe import/function removals before writing; add --apply to edit files | Dead code docs | | Security and quality audit | skylos . -a | Adds dangerous flow, secrets, dependency, config, quality, and AI-defect checks | Security docs | | Optional Python linting | pip install "skylos[lint]" && skylos lint . | Runs Ruff with its native configuration, output, fixes, and exit codes through the Skylos CLI | Python linting | | PR gate | skylos cicd init | Generates a GitHub Actions workflow with annotations and failure thresholds | CI/CD guide | | Readable terminal report | skylos . --format pretty | Groups findings by file with severity badges, snippets, and copyable file:line locations | CLI output modes | | Single-rule review | skylos . --select SKY-L012 --format concise | Enables the matching analyzer family and reports only that exact rule with its full message | CLI output modes | | Selectable terminal triage | skylos . --tui | Opens a keyboard-driven category list, finding list, and detail pane | CLI output modes | | IDE/test-script output | skylos --format concise src/test.py | Prints untruncated file:line RULE_ID message findings and exits non-zero when findings exist | CLI Reference | | In-loop AI-code verification | skylos verify . --file src/app.py --range 40:75 | Returns narrow JSON for hallucinated helpers, unfinished code, stale references, disabled controls, and API/dependency hallucinations | AI features | | AI hallucination contracts | skylos contract init && skylos verify . | Auto-discovers .skylos/ai-contract.yml and verifies generated code against repo-specific symbols, dependencies, APIs, route guards, and test requirements | AI Hallucination Contracts | | Changed-lines review | skylos . -a --diff origin/main | Keeps findings focused on active work instead of legacy debt | Quality gate docs | | Runtime-assisted dead-code check | skylos . --trace | Uses runtime traces to reduce dynamic-code false positives | Smart tracing | | Local rule pack | skylos rules init | Scaffolds YAML rules for project-specific security and quality checks | Custom rules | | Security agent quick scan | skylos agent security-quick . | One-shot LLM security audit; compatibility alias for skylos agent scan . --security | AI features | | Security agent deep scan | skylos agent security-deep . | Three-stage security workflow with threat-model context, static threat traces, discovery/validation, and remediation handoff | AI features | | AI-assisted review | skylos agent scan . | Static analysis plus optional LLM review and fix suggestions | AI features | | Agent harness replay | skylos agent replay .skylos/runs/<run-id> | Validates and summarizes saved agent verification phases, tool calls, decisions, and budgets | Agent harness artifacts | | Runtime agent behavior test | skylos agent init && skylos agent test --allow-contract-endpoint | Checks final responses, tool selection, explicit refusals, and source IDs against a versioned contract | Agent Behavior Testing | | Verification-backed remediation | skylos agent scan . --fix | Re-scans fixed security findings and records proof-test metadata for supported fixes | AI features | | MCP agent verification | verify_change MCP tool | Lets Claude, Cursor, and other MCP clients verify an edited file/range with the same schema as skylos verify | MCP server | | LLM integration inventory | skylos discover . | Maps every LLM call, agent tool, prompt site, and input source in the codebase | Agent verification | | Pre-deployment agent verification | skylos defend . --format md -o evidence.md | Verifies agent guardrails, scores OWASP LLM/Agentic coverage, and emits an attested evidence report | Agent verification | | Agent verification CI gate | skylos defend . --fail-on critical | Blocks deploys with unguarded LLM integrations; SARIF for code scanning via --format sarif | Agent verification | | MCP agent pre-flight | verify_agent MCP tool | Lets coding agents statically verify the agents they build โ€” scores, failed checks, attestation digest | MCP server | | Technical debt triage | skylos debt . | Ranks hotspots and debt trends | Technical debt |

What Skylos Catches

| Category | Examples | Why It Matters | |:---|:---|:---| | Dead code | unused functions, classes, imports, package entrypoints, route handlers | reduces maintenance cost without breaking dynamic frameworks | | Security flaws | SQL injection, XSS, SSRF, path traversal, command injection, unsafe deserialization | catches exploitable flows before code reaches main | | Secrets | API keys, tokens, private credentials, high-entropy strings | prevents credentials from leaking through commits and PRs | | CI/CD workflows | GitHub Actions and GitLab CI dangerous triggers, unpinned actions/includes, broad tokens, OIDC misuse, cache poisoning, mutable images | reduces CI/CD supply-chain risk before release jobs run | | Edge deployment config | Docker Compose privileged device access, host networking, systemd root services, broad capabilities, missing sandboxing | catches repo-controlled settings that turn app bugs into device compromise | | Quality regressions | complexity, deep nesting, duplicate branches, long functions, inconsistent returns | keeps AI-assisted refactors from adding brittle code | | AI code mistakes | phantom security calls, missing decorators, unfinished stubs, disabled controls, real packages called with invented APIs, impossible npm/Go versions | catches common hallucinated or incomplete code paths before they reach review | | LLM app risks | unsafe tool use, prompt injection exposure, missing output validation, missing rate limits | helps teams ship AI features with guardrails |

See the full Rules Reference.

Verify AI Agents Before They Ship

Runtime guardrails are the WAF; Skylos is the SAST. skylos discover inventories every LLM integration in a codebase (provider SDKs, agent frameworks including the OpenAI Agents SDK, Claude Agent SDK, and Google ADK, MCP servers and their tools, direct HTTP calls to LLM APIs or OpenAI-compatible gateways, plus agent tools, prompt sites, and input sources), and skylos defend verifies the guardrails around them โ€” deterministically, locally, with no model in the loop โ€” then gates CI and emits auditor-ready evidence.

skylos discover .                               # inventory LLM integrations and agent tools
skylos defend .                                 # score guardrails (13 weighted checks)
skylos defend . --format md -o evidence.md      # auditor evidence report + attestation
skylos defend . --format sarif -o defend.sarif  # GitHub code scanning upload
skylos defend . --fail-on critical              # CI gate: exit 1 on critical gaps
skylos defend . --owasp-framework agentic       # report against OWASP Agentic ASI Top 10

Per integration it verifies: dangerous output sinks (eval/exec/subprocess), agent tool scope and typed schemas, prompt-injection exposure (delimiters, untrusted input paths, RAG context isolation), output validation, PII filtering, and model pinning โ€” plus ops checks (logging, cost controls, rate limiting) scored separately so they never inflate the security score.

  • OWASP mapping: LLM Top 10 (2024/2025) and Agentic ASI Top 10 (2026).
  • Evidence report (--format md): integration inventory, per-check

results, OWASP coverage, regulatory framework evidence (EU AI Act, NIST AI RMF, ISO/IEC 42001 โ€” "evidence toward" mappings, never compliance claims), and a remediation appendix.

  • Attestation: JSON/md/SARIF reports carry a reproducible SHA-256 digest

over file contents, policy, plugin set, integration inventory, scores, and full check evidence โ€” re-run on the same tree with the same flags and Skylos version, and the digest must match.

  • CI-native: skylos cicd init --defend generates the workflow step, the

skylos-defend pre-commit hook gates locally, and $GITHUB_STEP_SUMMARY gets a score summary automatically in Actions.

  • Policy as code: skylos-defend.yaml pins gate thresholds and severity

overrides (--policy).

  • Agent-native: the verify_agent MCP tool lets coding agents verify the

agents they build โ€” deterministic verification, not AI checking AI.

Static pre-deployment verification complements runtime controls (gateways, policy engines, human approval flows); it does not replace them. Full guide: docs/agent-verification.md.

Test Running Agent Behavior

Skylos separates generated-code truth, static agent guardrails, and observed runtime behavior:

| Command | Verification question | |:---|:---| | skylos verify | Did the agent generate valid, non-hallucinated code? | | skylos defend | Does the agent implementation contain the required guardrails? | | skylos agent test | Did the running agent behave according to its contract? |

Create .skylos/agent-test.yml, then test a live OpenAI-compatible endpoint:

skylos agent init
skylos agent test --allow-contract-endpoint

Or evaluate captured evidence without a network call:

skylos agent test --observations agent-observations.json
skylos agent test --observations agent-observations.json \
  --format json --output agent-results.json

Version 1 deterministically checks exact response substrings, required, allowed, and forbidden tool calls, tool arguments and sequence, maximum call count, explicit refusals, and explicit source IDs. Missing typed evidence is incomplete, never pass; exit codes are 0 pass, 1 violation, and 2 incomplete/invalid. Tool selection and final-answer source-ID checks are separate one-turn scenarios: Skylos records local replayable evidence but never executes tools returned by the target agent. Offline observations are marked as unverified fixtures rather than runtime proof.

For an authenticated remote endpoint, keep the destination and secret choice in the trusted CLI invocation:

skylos agent test --endpoint https://agent.example.com/v1/chat/completions \
  --allow-remote --auth-env MY_AGENT_API_KEY

Full guide: docs/agent-behavior-testing.md.

How Skylos Fits

Skylos is not a replacement for every specialized scanner. It is a local-first repo and PR checker that puts several common review checks behind one CLI.

  • Framework-aware dead code detection: FastAPI, Django, Flask, pytest,

SQLAlchemy, Next.js, React, package entrypoints, and common plugin patterns.

  • PR-focused output: diff scanning, CI thresholds, GitHub annotations, and

baselines for existing findings.

  • Local-first operation: core static analysis does not require cloud upload

or LLM calls.

  • AI-assisted change review: checks for removed validation, auth, logging,

CSRF, rate limiting, timeouts, real-package API hallucinations, and other guardrails in generated or edited code.

  • Agent-loop verification: skylos verify and MCP verify_change return

versioned JSON for only AI-code trust findings, so coding agents can self-correct before a human sees the change.

  • Evidence-backed AI defects: --ai-defects and full scans put strict

AI-code failure checks under ai_defects, including phantom references, fake package APIs, nonexistent packages, impossible dependency versions, and weakened test assertions. The category/tag is ai_defect; several rules intentionally keep historical SKY-L or SKY-D IDs for suppression and baseline compatibility, while new AI-defect-only checks use SKY-A.

  • Verification-backed remediation: security fixes are checked by re-running

analysis, and supported findings can include targeted regression-test proof metadata.

  • Project-specific rules: add local YAML rules and extend prompt, credential,

sensitive-file, and timeout dictionaries from config.

  • One command surface: dead code, security, secrets, dependency, quality,

technical debt, agent review, and pre-deployment agent verification commands share the same CLI.

Agent Harness Artifacts

skylos agent verify . and skylos agent test record replayable artifacts under .skylos/runs/<run-id> and print the run directory in table output. JSON output includes the same harness summary under the harness key.

Use skylos agent replay .skylos/runs/<run-id> to validate and inspect a saved run without making LLM calls. Add --format json when another agent or CI job needs machine-readable status. A valid replay exits 0; an invalid or corrupt artifact set exits 1 with issue codes. Replay output includes schema_version so CI and agents can detect artifact-contract changes. Replay checks internal consistency and corruption; artifacts are not signed and are not proof against an actor that can rewrite the entire run directory.

Each run directory contains:

  • events.jsonl: chronological run, phase, and tool-call events.
  • state.json: full observable state, including phases, tool calls, decisions,

and budget usage.

  • summary.json: compact status, counts, budget, and artifact paths.
  • behavior-results.json: normalized runtime assertions, provenance, coverage,

and a digest-bound evidence report for skylos agent test runs.

The current harness state is observable and replay-validated. It is not yet a resume mechanism for continuing interrupted verification runs.

Install Options

# Core static analysis
pip install skylos

# LLM-powered agent workflows
pip install "skylos[llm]"

# Ruff Python linting through `skylos lint`
pip install "skylos[lint]"

# All published optional extras
pip install "skylos[all]"

Container image:

docker pull ghcr.io/duriantaco/skylos:latest
docker run --rm -v "$PWD":/work -w /work ghcr.io/duriantaco/skylos:latest . --json --no-provenance

The unqualified image uses Python 3.14. Runtime-specific tags are also published for Python 3.11 through 3.14, so container scans can match a local or CI parser exactly:

docker run --rm -v "$PWD":/work -w /work ghcr.io/duriantaco/skylos:latest-python3.13 . --json --no-provenance

If a Python file cannot be parsed, Skylos reports analysis_errors, omits the grade, and exits with code 2 instead of treating the skipped file as clean.

See Installation for source installs, container usage, and optional dependencies.

Configure Templates And Vibe Checks

Run skylos init to add these sections to pyproject.toml:

[tool.skylos]
exclude = ["node_modules", "dist"]

[tool.skylos.templates]
# security = ".skylos/templates/security.md"
# quality = ".skylos/templates/quality.md"
# security_audit = ".skylos/templates/security_audit.md"
# review = ".skylos/templates/review.md"

[tool.skylos.vibe]
extra_phantom_names = ["verify_enterprise_auth"]
extra_phantom_decorators = ["tenant_admin_required"]
extra_credential_names = ["tenant_signing_secret"]
extra_network_timeout_calls = ["vendor_sdk.fetch"]

[tool.skylos.dead_code]
entrypoints = []

[[tool.skylos.dead_code.entrypoints]]
type = "method"
name = ["create", "pre_hook", "post_hook"]
parent = { name = "Main", base_classes = ["Application"] }
path = "src/**"
reason = "project framework lifecycle hook"

[tool.skylos.contribution]
collect_local_signals = false
contribute_public_corpus = false
structural_signatures_only = true
include_source = false

Template files extend Skylos' built-in prompts; they do not replace the JSON-only output contract or untrusted-code safety rules. Vibe dictionary extensions let teams teach Skylos about local fake-auth helpers, project credential names, sensitive files, and network calls that must set timeouts. Dead-code entrypoints let teams mark proprietary framework classes, lifecycle methods, and decorator-registered functions as live using precise rules for type, name, path, decorators, base classes, and parent classes. Rules must include a symbol selector such as name, decorators, base_classes, or parent; path and module only narrow the match. Contribution signals are off by default; when enabled, Skylos records local structural accept/dismiss/learn events under .skylos/contribution/ without raw source.

By default Skylos discovers [tool.skylos] in pyproject.toml by walking up from the scan path. To use a dedicated TOML config, pass --config-file PATH or set SKYLOS_CONFIG_FILE; standalone files may use either [tool.skylos] or top-level [skylos]. Synced Skylos Cloud policy keeps its protected precedence over repository-controlled config. The top-level [tool.skylos].exclude list applies to the main scan and commands such as skylos debt and skylos clean; pass --exclude for command-local additions or --include-folder to override an excluded folder.

Language Support

| Language | Dead Code | Security | Quality | Local API Proof (verify) | Notes | |:---|:---:|:---:|:---:|:---:|:---| | Python | Yes | Yes | Yes | Supported | strongest coverage; framework-aware static analysis and optional tracing | | TypeScript / JavaScript | Yes | Yes | Yes | Supported | Tree-sitter parsing, package graph reachability, framework conventions | | Java | Yes | Yes | Yes | Supported | Tree-sitter parsing, structured security-flow analysis, conservative static-member proof | | Go | Yes | Partial | Partial | Supported | native engine status remains separate from deterministic workspace API proof | | PHP | Yes | Yes | Partial | Unsupported | PHP parser coverage plus taint-style security sinks and sources | | Rust | Yes | Yes | Partial | Unsupported | Rust parser coverage plus security sink/source checks | | Dart | Yes | Yes | Partial | Unsupported | Dart parser coverage plus selected security sinks and sources | | C# | Yes | Yes | Partial | Unsupported | C# symbol coverage plus selected ASP.NET, process, SQL, HTTP, and file sinks | | Kotlin | Yes | Partial | Partial | Unsupported | Kotlin symbol extraction with conservative static-analysis coverage | | Shell | No | Yes | Partial | Unsupported | shell-script security checks for command injection, SSRF, and path traversal |

See Rules Reference for rule families and scanner scope.

Config And Deployment Support

| Surface | Files | Security Scope | |:---|:---|:---| | GitHub Actions | .github/workflows/.yml, .github/workflows/.yaml, action.yml, action.yaml | dangerous triggers, token permissions, unpinned actions, template injection, secrets, OIDC, cache, and artifact policy | | GitLab CI | .gitlab-ci.yml | mutable images, unpinned includes, literal secrets, untrusted eval, Docker-in-Docker, OIDC, cache, timeout, and runner-tag policy | | Dockerfile | Dockerfile, Dockerfile., .dockerfile | dangerous RUN commands, remote ADD without checksum, and literal build ARG / ENV secrets | | Edge Docker Compose | compose.yml, compose.yaml, docker-compose.yml, docker-compose.yaml | privileged containers, broad host device/control mounts, GPU/device runtime, and host networking | | Edge systemd | *.service | root edge services, mutable ExecStart paths, missing sandboxing, broad capabilities, and broad device access |

Benchmark Snapshot

Skylos has checked-in regression benchmarks for dead code, security, quality, and agent review. These are strict regression gates, not broad proof that any tool is universally state of the art.

| Suite | Current Skylos Result | Baseline | |:---|:---|:---| | Dead code regression | 16 cases, TP=36 FP=0 FN=0 TN=59, score 100.0 | Ruff score 62.67; Vulture not installed in latest local rerun | | Security regression | 56 cases, TP=35 FP=0 FN=0 TN=23, score 100.0 | Bandit score 47.14 on Python-applicable cases | | Quality regression | 13 cases, score 100.0 | regression gate only | | Agent review | 25 cases, score 100.0 | regression gate only | | AI-code defect regression | curated verifier cases for hallucinated references, package APIs, and dependency versions | run python scripts/ai_code_defect_benchmark.py |

Frozen golden-v0.2 highlights:

| Frozen Suite | Skylos Result | Caveat | |:---|:---|:---| | Dead code seeded dev | overall score 96.28; TS/JS/Go/Java score 100.0; Python score 93.33 | Python residuals are label-review items | | Security seeded dev | overall score 96.52; full recall with one Python urljoin false positive | label should be reviewed | | OWASP Java security dev | TP=105 FP=0 FN=15 TN=120, score 94.37 | request-wrapper, LDAP, XPath, and property weak-hash gaps remain | | Quality seeded dev | TP=1 FP=0 FN=0 TN=1, score 100.0 | one seeded case only |

For methodology, commands, competitor rows, and caveats, see BENCHMARK.md.

Project Evidence

Skylos-assisted dead-code cleanup PRs have been merged in Black, NetworkX, Optuna, mitmproxy, pypdf, beets, and Flagsmith. These are accepted cleanup PRs, not project endorsements. See Real-World Results.

<a id="star-authenticity-audit"></a>

A local Astronomer scan on April 26, 2026 computed 420 stargazers and returned overall trust: A. StarGuard also reported low fake-star risk.

Integrations

| Integration | Link | Purpose | |:---|:---|:---| | GitHub Action | GitHub Action | PR gates, annotations, and CI enforcement | | VS Code extension | VS Code extension | in-editor findings and AI-assisted fixes | | MCP server | MCP setup | expose Skylos scans to AI agents and coding assistants | | Ruff | Python linting | optional Python linting through skylos lint | | Docker image | Installation | run Skylos without a local Python install | | Skylos Cloud | Cloud workflow | optional upload and dashboard workflows |

Generate a GitHub Actions workflow from the CLI:

skylos cicd init --upload
skylos cicd init --upload --scan-path apps/api

The generated upload workflow uses GitHub OIDC, sends PR head commit/branch metadata, and supports monorepo subprojects through --scan-path.

Documentation Map

| Need | Read This | |:---|:---| | Install options, source install, and Docker | Installation | | First scan and core workflows | Quick Start | | CLI commands, flags, and examples | CLI Reference | | CLI output modes, pretty reports, and TUI controls | CLI Output Modes | | Optional Ruff linting through the Skylos CLI | Python Linting | | CI setup, PR gates, annotations, and branch protection | CI/CD | | Dead-code behavior and framework awareness | Dead Code Detection | | Security scanning and taint analysis | Security Analysis | | Rule ID prefixes and product terminology | Rule Dictionary | | Agent scan, verification, remediation, and model setup | AI Features | | AI defense checks and LLM guardrails | AI Defense | | MCP server setup | MCP Server | | Real-world merged cleanup PRs | Real-World Results | | Baselines, filtering, suppressions, and whitelists | Configuration | | Smart tracing | Smart Tracing | | Rule families and language support | Rules Reference | | Cloud uploads and dashboard flow | CLI to Dashboard | | VS Code extension | VS Code Extension | | Benchmarks and methodology | BENCHMARK.md | | Security policy | SECURITY.md | | Release process | RELEASE_WORKFLOW.md | | Contribution priorities | ROADMAP.md | | Contributing | CONTRIBUTING.md |

Common Questions

Does Skylos replace Bandit, Semgrep, CodeQL, or Vulture?

No. Skylos can run alongside them. It focuses on framework-aware dead-code signal, PR gating, AI-era regression checks, and a combined workflow across dead code, security, secrets, quality, and AI-defect checks.

Does Skylos require an LLM?

No. Core static analysis runs locally without API keys. LLM features are optional through skylos[llm] and agent commands.

Does Skylos replace Ruff?

No. skylos lint is an optional convenience entry point that delegates to Ruff. Install it with pip install "skylos[lint]"; normal Skylos scans do not run Ruff or merge Ruff violations into SKY-* findings.

Can I use it only on changed code?

Yes. Use skylos . -a --diff origin/main locally or configure CI gates to focus on new findings.

How should I handle intentional dynamic code?

Use baselines, whitelists, inline suppressions, or runtime tracing. See the configuration docs and smart tracing docs.

Contributing And Support

  • Report security issues through SECURITY.md.
  • Open bugs and false-positive reports with minimal repros.
  • Check ROADMAP.md for useful contribution areas.
  • Read CONTRIBUTING.md before sending a pull request.
  • See QUALITY.md for project quality and gate expectations.
  • Join the Discord for community support.

License

Skylos is licensed under the Apache License 2.0.

<!-- mcp-name: io.github.duriantaco/skylos -->

See related servers & alternatives โ†’

Related MCP servers

Browse all โ†’

Related guides

Hand-picked reading to help you choose and use Developer Tools servers.