Skip to main content

smells

Deterministic code-smell evidence for Rust, Python, and TypeScript.

smells scans a codebase and answers five practical questions:

  1. What smell pattern was detected?
  2. Where is it in the repository?
  3. What measurement crossed which threshold?
  4. Why might it matter, and what should be reviewed?
  5. Which Refactoring.Guru reference must an agent research before suggesting a fix?

The scanner—not an LLM—decides whether a configured rule matches. The same source, policy, evidence, and executable produce the same ordered JSON report. This makes smells suitable for local review, CI, pre-commit hooks, and agentic coding environments.

Quick start · Understand results · Pre-commit hook · Monorepos · Choose rules · Full-pattern evidence · Rule reference · Install

At a glance

  • Scans Rust, Python, TypeScript, and TSX source without executing application code.
  • Reports repository-relative files, lines, symbols, measurements, and thresholds.
  • Separates blocking rules from review-only signals.
  • Understands monorepos and groups results by the nearest runtime manifest.
  • Emits human-readable tables or complete JSON for hooks and coding agents.
  • The v0.3.0 release pipeline produces versioned GitHub binaries, PyPI wheels, native npm packages on npmjs.com and GitHub Packages, and a crates.io package from one release build.
  • Fails closed when parsing, required evidence, or analysis budgets are incomplete.
  • Covers all 23 Refactoring.Guru smell categories through 28 rules per language pack.

Important: every rule in every starter policy is active. The default group is all, so a scan without provider evidence intentionally exits 2 for rules that need compiler, type, coverage, contract, test, or Git-history facts. Use --only-group source for a source-only scan; excluded means “not checked,” never “clean.”

Supported languages

Language pack Files scanned Built-in source rules Evidence-backed rules What counts as a class-like type
rust-v1 .rs 17 11 struct/enum state plus resolved inherent and trait impl methods; traits are interface-like contracts
python-v1 .py, .pyi 10 18 class state, direct methods, and self/cls field assignments
typescript-v1 .ts, .tsx, .mts, .cts 10 18 Classes, abstract classes, class expressions, method signatures, and constructor parameter-properties

Java and Kotlin are not currently supported. A React Native repository can scan its TypeScript/TSX source, but not its native Android code.

Quick start

1. Install Smells

The registry packages below are introduced by v0.3.0. Until that tag appears on the GitHub Releases page, they are release candidates and are not yet available from PyPI, npm, or crates.io. The npm tarballs will also be mirrored to the repository's GitHub Packages page.

After v0.3.0 is published, the fastest cross-language option is the prebuilt PyPI tool package:

uv tool install smells==0.3.0
smells --version

Node projects can pin the native npm package. It does not download anything during installation:

npm install --save-dev --save-exact @mindful-time/smells@0.3.0
npx --no-install smells --version

Rust users can build the same executable from its verified crates.io source package:

cargo install --locked --version 0.3.0 smells

Unlike the PyPI and npm channels, cargo install requires Rust 1.88 and compiles locally. See package distribution for package names, platform selection, registry provenance, and owner bootstrap requirements.

Install a standalone release

Download the archive for your host from the matching GitHub Release. Verify both its checksum and GitHub provenance before installing it. For macOS Apple Silicon:

gh release download v0.3.0 \
  --repo mindful-time/smells \
  --pattern 'smells-aarch64-apple-darwin.tar.gz*'
shasum -a 256 -c smells-aarch64-apple-darwin.tar.gz.sha256
gh release verify v0.3.0 --repo mindful-time/smells
gh release verify-asset v0.3.0 \
  smells-aarch64-apple-darwin.tar.gz \
  --repo mindful-time/smells
tar -xzf smells-aarch64-apple-darwin.tar.gz
install -m 0755 smells-aarch64-apple-darwin/smells ~/.local/bin/smells
smells --version

The same release contains macOS Intel, Linux AMD64/ARM64 GNU, and Windows AMD64 archives. It also contains the exact wheel, npm, and crates.io package payloads published by the release workflow. After downloading a wheel directly:

uv tool install ./smells-0.3.0-py3-none-PLATFORM.whl

The wheel is a delivery mechanism; the scanner does not become a Python program. There is deliberately no source distribution, so an unsupported platform fails instead of compiling Rust unexpectedly. See the release process for the artifact contract and supported targets.

Contributors can still build from source with Rust 1.88:

git clone https://github.com/mindful-time/smells.git
cd smells
cargo install --path . --locked

2. Choose a starter policy

Your codebase Starter policy
Rust examples/quality-policy.json
Python examples/python-quality-policy.json
TypeScript/TSX examples/typescript-quality-policy.json

A policy selects the language pack, rule modes, thresholds, excluded directory names, default rule groups, and analysis budgets. There is no separate language flag. Every starter has "default_groups": ["all"] and 28 active rules.

Copy the matching starter policy into the repository you want to scan. For a Python project:

cp examples/python-quality-policy.json /path/to/python-project/quality-policy.json
cd /path/to/python-project
smells contracts validate --policy quality-policy.json

Use the Rust or TypeScript starter from the table in the same way. Review its thresholds, then commit quality-policy.json with the project so local, CI, and hook scans all use the same contract.

3. Scan a codebase

Use the table format for an interactive first run:

smells check \
  --path . \
  --policy quality-policy.json \
  --only-group source \
  --format table

Replace the path and policy for Rust or TypeScript. Scan from a monorepo root if you want findings grouped by each nested implementation.

Use JSON for CI, hooks, or coding agents:

smells check \
  --path . \
  --policy quality-policy.json \
  --only-group source \
  --format json > smells-report.json

JSON reports can be large because they retain both matched and nonmatching measurements so the verdict can be audited.

To keep that complete JSON report while also showing actionable output in the terminal or CI log, use --report with the table format:

smells check \
  --path . \
  --policy quality-policy.json \
  --only-group source \
  --format table \
  --report target/quality/smells-report.json

This performs one scan. The log includes the verdict, implementation, smell pattern, evidence locations, observed value, threshold, source lines, reason, remediation, Refactoring.Guru URL, and non-negotiable research instruction for every match. --report writes the complete machine-readable JSON from that same scan.

Understand the result

Exit codes

Exit code Meaning What to do
0 Every selected active required rule completed and passed Continue
1 One or more required rules matched Review the blocking findings
2 The scan was incomplete or invalid Fix the input, policy, parser, ownership, budget, or evidence error

Review-only findings do not change a successful exit code. Errors always take precedence over matches.

Read the table from top to bottom

An abbreviated table report looks like this:

Scan summary | verdict: blocked_by_required_patterns | implementations: 1 | matched patterns: 2/23 | blocking patterns: 1 | review patterns: 1 | matched findings: 11 | blocking findings: 3 | review signals: 8 | errors: 0
Implementation: backend | root: backend | ... | 120 python files
Smell pattern  | Pattern ID     | Result         | Matches | Blocking | Review | Coverage
Long Method    | long-method    | blocking_match | 3       | 3        | 0      | measured_defined_scope
Duplicate Code | duplicate-code | review_match   | 8       | 0        | 8      | measured_defined_scope
Dead Code      | dead-code      | excluded       | 0       | 0        | 0      | excluded

Matched evidence for backend:
Finding | Smell       | Repository symbols          | Metric                   | Value | Matches when | Threshold | Status    | Repository evidence locations
42      | Long Method | app/jobs.py::process_batch | authored body code lines | 146   | >            | 100       | violation | app/jobs.py:42:1

Actionable finding 42 | Long Method | python.function_lines | pattern_type=metric | certainty=exact_source_metric | status=violation
  Issue: Long Method: python.function_lines violation
  Primary location: app/jobs.py:42:1 | symbol: app/jobs.py::process_batch
  Observed versus threshold: authored body code lines = 146; matches when > 100
  Evidence: Observed authored body code lines = 146; this satisfies the configured match condition > 100.
  Signal: A callable's authored body contains more code lines than the configured maximum.
  Source excerpt: app/jobs.py:42:1
    >     42 | def process_batch(...):
  Why it matters: A large callable can conceal multiple responsibilities and make focused testing harder.
  Remediation: Extract coherent steps into named callables or a focused class/module while preserving behavior with tests.
  Reference URL: https://refactoring.guru/smells/long-method
  Research requirement: NON-NEGOTIABLE RESEARCH: Perform an external research/tool call to the reference URL ...

Read it in this order:

  1. Implementation tells you which application, package, or service owns the result.
  2. Blocking rows caused exit code 1 and should be handled first.
  3. Review rows are deterministic signals that still require design judgement.
  4. Matched evidence shows the exact symbol, measurement, threshold, and location.
  5. Actionable findings are self-contained for every match: they add pattern type, source lines, why the signal matters, remediation guidance, its exact reference URL, and the mandatory research instruction.
  6. Excluded means the resolved group selection did not run that detector; it does not mean no smell exists. Disabled is reserved for an explicit legacy off mode.

checked_no_match_in_measured_scope means the selected active detector ran and stayed within its configured threshold. not_applicable means the smell does not map to that language's model.

Rule modes

Mode Behavior
required A match blocks with exit code 1
report A match is recorded for human or agent review but does not block
off Legacy/custom-policy opt-out; the shipped policies do not use it

What a finding contains

Each matched JSON finding is self-contained. It includes:

  • Smell name, category, pattern type, and rule identity.
  • File, one-based line and column, symbol, and related locations.
  • The observed measurement, comparison, and configured threshold.
  • A source excerpt when applicable.
  • Why the signal matters and what the reviewer should inspect.
  • A behavior-preserving remediation direction.
  • The exact Refactoring.Guru URL.
  • A non-negotiable instruction requiring an external research call to that URL before an agent reviews or changes the code.

A shortened finding looks like this:

{
  "smell_id": "long-method",
  "smell": "Long Method",
  "pattern_type": "metric",
  "symbol": "process_batch",
  "location": {
    "path": "src/jobs.py",
    "line": 42,
    "column": 1
  },
  "evaluation": {
    "metric": "authored body code lines",
    "observed": 146,
    "match_condition": ">",
    "threshold": 100,
    "matched": true
  },
  "diagnostic": {
    "why_it_matters": "A large callable can conceal multiple responsibilities and make focused testing harder.",
    "remediation": "Extract coherent steps into named callables or a focused class/module while preserving behavior with tests.",
    "reference_url": "https://refactoring.guru/smells/long-method",
    "reference_check": {
      "required": true,
      "non_negotiable": true
    }
  },
  "status": "violation",
  "blocking": true
}

See the complete report interface before building a custom integration.

Scan a working tree or the Git index snapshot

Whole repository

smells check --path . --policy quality-policy.json --only-group source --format table

--path recursively captures only the selected language's supported extensions. Configured cache/build directories are excluded by name. Symlinks are never followed, so dependency caches cannot silently redirect a scan outside its root.

Git index snapshot for pre-commit

Run this from the consuming Git repository:

smells check --staged --policy quality-policy.json --only-group source --format json

Despite the name, --staged does not scan only paths changed by the next commit. It scans the complete tracked source snapshot in the Git index for the selected language. It reads source, runtime manifests, policy, and optional evidence from index blobs—not from unstaged working-tree replacements. The policy itself must be staged.

For a mixed Rust/Python/TypeScript repository, keep one policy per language and invoke the scanner once for each policy.

Add it to a pre-commit hook

The repository includes an inactive consumer hook example. Pin and validate the scanner version before adding it to another project, and merge the command into any existing hook rather than overwriting that hook.

For the Python pre-commit framework, uvx provides a pinned, cached executable without checking scanner source into the consuming repository:

repos:
  - repo: local
    hooks:
      - id: smells
        name: deterministic smell scan
        language: system
        entry: uvx --from smells==0.3.0 smells check --staged --policy quality-policy.json --only-group source --format json
        pass_filenames: false

A Node project that already pins @mindful-time/smells can use the same hook with entry: npx --no-install smells check .... A Rust-oriented development image can install smells once with Cargo and keep the plain smells check ... entry. In all three cases the policy stays checked into the consuming repository and the hook scans the same Git-index snapshot.

A minimal single-language hook is:

#!/bin/sh
set -eu

command -v smells >/dev/null 2>&1 || {
  printf '%s\n' 'smells: scanner executable is unavailable' >&2
  exit 2
}

exec smells check --staged --policy quality-policy.json --only-group source --format json

Keep formatting, compilation, tests, Gitleaks, OSV, and other project checks in the same quality pipeline. smells complements them; it does not replace them. See project integration for mixed-language hooks, scope guarantees, and fail-closed behavior.

Monorepo behavior

When scanning from a monorepo root, each source file is assigned to its nearest ancestor manifest:

  • Cargo.toml for Rust
  • pyproject.toml for Python
  • package.json for TypeScript

The report gets one implementation_results section per discovered runtime. Nested manifests take ownership from parent manifests. Source without a matching manifest remains visible under __unowned__ instead of disappearing.

This makes it possible to answer “which application or service owns this smell?” without scanning every directory separately.

Source rules and full-pattern evidence

The starter policies activate all 28 rules and select all by default. For an immediate syntax-only pass, explicitly choose the source group:

smells check --path . --policy quality-policy.json --only-group source --format table

Built-in source rules cover deterministic syntax measurements such as:

  • Function size and argument count.
  • Class/type fields, methods, and total method lines.
  • Repeated parameter groups and duplicate callable bodies.
  • Comment density, data-only classes, and tiny classes.
  • Additional Rust indicators such as primitive-heavy types, repeated dispatch, temporary fields, forwarding classes, and alternative interfaces.

Some smell claims cannot be made honestly from syntax alone. Dead code needs compiler or type information; CRAP needs complexity plus complete coverage; shotgun surgery and divergent change need pinned history; architectural smells need dependency or project contracts.

All corresponding evaluators exist. Because the starter policy selects them, the default full scan requires a complete provider-evidence bundle tied to the exact resolved scan's input_sha256:

smells check \
  --path /path/to/project \
  --policy quality-policy.json \
  --evidence provider-evidence.json \
  --format json

Missing, stale, incomplete, or malformed required evidence returns exit code 2; the scanner never silently downgrades the rule. Start with the provider evidence guide and its JSON Schema.

The bootstrap sequence is intentionally fail-closed:

  1. Finish the full policy and capture a stable source snapshot. Staged mode is preferred because the Git index gives both passes the same source and policy.
  2. Run that exact full policy without --evidence. The expected exit code is 2, but the JSON report supplies the snapshot's input_sha256.
  3. Run your pinned external providers against that same snapshot and create one complete evidence entry for every selected provider-backed rule, using that digest.
  4. Stage the evidence file when using --staged, then rerun the command with --evidence provider-evidence.json.

Do not change source or policy between these steps. If anything changes, capture a new digest and regenerate the evidence.

Policies and rule reference

Choose which policy groups run

The selection model follows uv's dependency-group behavior. Persistent defaults come from default_groups in the checked-in policy; the starter policies use ["all"]. Inspect the exact resolved policy before scanning:

smells policy show --policy quality-policy.json --format table
smells policy show --policy quality-policy.json --only-group source --format json

Built-in groups are all, source, evidence, and the five canonical smell categories: bloaters, object-orientation-abusers, change-preventers, dispensables, and couplers.

Selector Resolution behavior
--group NAME Add a group to the configured defaults; repeatable
--only-group NAME Replace defaults with only these groups; repeatable
--all-groups Include every rule
--no-default-groups Start without configured defaults
--no-group NAME Remove a group after every inclusion; exclusions always win

--only-group conflicts with --group, --all-groups, and --no-default-groups. Unknown or duplicate group selectors return exit 2. The resolved selection, group membership, selected/excluded rule IDs, and rule mode appear in policy show and every scan report. The resolved selection is also part of input_sha256, so evidence for one selection cannot be replayed against another.

List the registered rules for one language pack:

smells rules --rule-pack rust-v1
smells rules --rule-pack python-v1
smells rules --rule-pack typescript-v1

Exact thresholds and measurement contracts are documented here:

Analysis limits such as maximum_files, maximum_pairs, and maximum_group_combinations are deterministic safety ceilings. Exceeding a limit returns exit code 2; it never produces a silently truncated success.

What smells does not do

  • It does not automatically fix or refactor source code.
  • It does not execute application code, builds, compilers, tests, or build scripts.
  • It does not treat a structural indicator as proof of a design defect.
  • It does not guess active Rust features, Python environments, or TypeScript configs.
  • It does not authenticate external evidence producers; the surrounding quality pipeline must invoke and verify the intended pinned provider.
  • It does not currently scan Java, Kotlin, JavaScript, JSX, or other languages.

The tool supplies deterministic evidence. A human or coding agent still decides whether the detected structure is intentional and which behavior-preserving change, if any, is appropriate.

Performance and benchmarking

Python and TypeScript parsing uses bounded Rayon workers. Duplicate detection uses exact prefix, size, and positional filters before charging the pair budget, avoiding comparisons that cannot reach the configured similarity threshold.

Measure your own repository instead of assuming one machine or corpus represents another:

./scripts/benchmark-scan.sh . quality-policy.json 5 cold default
./scripts/benchmark-scan.sh . quality-policy.json 5 warm default

The benchmark discards the report but records wall time, cache hits/misses, syntax work, candidate comparisons, output bytes, and peak memory. Always compare cold and warm results; cache hits are deterministic but are not guaranteed to be faster for every corpus. See performance and algorithm research for the algorithm and benchmark design.

Developing smells

Run the deterministic test suite:

cargo fmt --all -- --check
cargo clippy --locked --all-targets -- -D warnings
cargo test --locked

Install this repository's own pre-commit and pre-push hooks:

make install-hooks
make pre-commit-push

The shared gate runs formatting, build, Clippy, tests, the scanner against itself, CRAP analysis, Gitleaks, and OSV. CRAP has a target of 5 and a hard blocking limit of 10; scores above the target remain visible to coding agents.

Pull requests run that same gate in GitHub Actions and additionally build, install, and execute a binary wheel and standalone archive. Pull requests must originate from a fork. Only repository owner mindful-time can dispatch release publication from main; read repository governance and the release process before changing either workflow.

The optional live E2E test verifies the hook-to-finding-to-Refactoring.Guru research path and therefore requires network access:

cargo test --locked --test e2e_live -- --ignored --nocapture

Ordinary tests remain offline and deterministic.

Project status

smells source is currently version 0.3.0. Its owner-gated release workflow is configured to publish standalone GitHub archives, binary PyPI wheels, native npm packages to npmjs.com and GitHub Packages, and the crates.io source package. Those registry packages are not complete until the v0.3.0 workflow and its documented one-time interactive npm bootstrap succeed. No Python sdist is produced. Smells is open-source software licensed under the MIT License. Repository: mindful-time/smells.

Release files for smells 0.3.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for smells 0.3.0
File
smells-0.3.0-py3-none-win_amd64.whl Python 3 none Windows x86-64 Details
smells-0.3.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl Python 3 none Linux glibc 2.17+ x86-64 Details
smells-0.3.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl Python 3 none Linux glibc 2.17+ ARM64 Details
smells-0.3.0-py3-none-macosx_11_0_arm64.whl Python 3 none macOS 11.0+ ARM64 Details
smells-0.3.0-py3-none-macosx_10_12_x86_64.whl Python 3 none macOS 10.12+ x86-64 Details

Total release size: 13.6 MB

Release files / smells-0.3.0-py3-none-win_amd64.whl

Download URL smells-0.3.0-py3-none-win_amd64.whl
Size 2.9 MB
Tags Python 3 Windows x86-64
SHA-256 checksum
How to use checksums
64a81d802bfd90812d1e7b3c0a201a2d9bb4b9405636654bd490b6b0d3dd5841
BLAKE2b-256 checksum
How to use checksums
eef7f7b036082a1a65b003dfeb4fe54aa8f8c86503efcfced869f6023409672d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / smells-0.3.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL smells-0.3.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.8 MB
Tags Linux glibc 2.17+ x86-64 Python 3
SHA-256 checksum
How to use checksums
6a6a34eef06b75978d0e9ea453fd1009f32276b85e4916ecbaa7d4b47c7143ae
BLAKE2b-256 checksum
How to use checksums
a33d9fb7807227e781944a79c94de4f597e5657e183ac558e679693a5b830bca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / smells-0.3.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL smells-0.3.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 2.6 MB
Tags Linux glibc 2.17+ ARM64 Python 3
SHA-256 checksum
How to use checksums
b0f28da3fed17b26d0185cdd0e3573f9dac67679c6262679651b9c6cd038ca67
BLAKE2b-256 checksum
How to use checksums
75be62b585267c45943a44df17b61703bc0d61aeee7f0554c97b96463d6eca26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / smells-0.3.0-py3-none-macosx_11_0_arm64.whl

Download URL smells-0.3.0-py3-none-macosx_11_0_arm64.whl
Size 2.6 MB
Tags Python 3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e414105f22159f34fd75a87f31a8604d2676083766d091562a8d565a79d1c4cf
BLAKE2b-256 checksum
How to use checksums
2317879f7fde0fb51ada02a745c9693ba68b99403f99d68a9b7873be4f35a060
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release files / smells-0.3.0-py3-none-macosx_10_12_x86_64.whl

Download URL smells-0.3.0-py3-none-macosx_10_12_x86_64.whl
Size 2.7 MB
Tags Python 3 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
4a18c09639b41e837e2d3a8f87ba9f4807e9344ff354fc90b261e34f8f0cae42
BLAKE2b-256 checksum
How to use checksums
b174e1e3aeaf9705dce59ce663b49c377dea684efc44008e005a1fbee3108bb4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.

Transparency log

Release history Release notifications | RSS feed

0.4.0

5 release files

This release

0.3.0 This release

5 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page