secchi
Opensource Package Intelligence tool
File Explorer
- SKILL.md
- SKILL.md
- SKILL.md
- SKILL.md
- feature_request.md
- ci.yml
- coverage-pages.yml
- release.yml
- secchi-scan.yml
- security.yml
- duck-db-demo.png
- secchi-logo.png
- secchi-v0.1.0-demo-1.gif
- favicon.svg
- FONTS.txt
- JetBrainsMono-400-symbols.woff2
- JetBrainsMono-400.woff2
- JetBrainsMono-500-symbols.woff2
- JetBrainsMono-500.woff2
- JetBrainsMono-700-symbols.woff2
- JetBrainsMono-700.woff2
- SpaceGrotesk-500.woff2
- SpaceGrotesk-700.woff2
- extra.css
- commands.md
- contributing.md
- development.md
- environment.md
- getting-started.md
- github-actions.md
- index.md
- mcp.md
- metrics.md
- reports.md
- workspace.md
- package.html
- package.json
- package.md
- project.html
- project.json
- project.md
- README.md
- header.html
- nav.html
- check-branch-name.sh
- openai.yaml
- decision-rubric.md
- SKILL.md
- __init__.py
- base.py
- cran.py
- crates.py
- golang.py
- homebrew.py
- npm.py
- pubdev.py
- pypi.py
- sparse.py
- __init__.py
- reports.py
- summary.py
- __init__.py
- comparison.py
- intelligence.py
- resolver.py
- search.py
- __init__.py
- dashboard.tcss
- __init__.py
- badge.py
- bar.py
- detail.py
- header_bar.py
- modals.py
- overview.py
- panel.py
- sidebar.py
- stat_card.py
- status_bar.py
- __init__.py
- app.py
- palette.py
- __init__.py
- check.py
- common.py
- compare.py
- dashboard.py
- inspect.py
- report.py
- search.py
- show.py
- __init__.py
- aggregate.py
- state.py
- __init__.py
- __main__.py
- aggregate.py
- cache.py
- cli.py
- config.py
- derived.py
- dev.py
- diagnostics.py
- errors.py
- export.py
- history.py
- http.py
- mcp_server.py
- models.py
- policy.py
- schema.py
- schemas.py
- security.py
- spotlight.py
- trending.py
- update.py
- utils.py
- web.py
- test_adapters.py
- test_cache_history.py
- test_cache_schema.py
- test_cli.py
- test_comparison.py
- test_config_and_renderers.py
- test_derived.py
- test_diagnostics.py
- test_errors.py
- test_http.py
- test_intelligence.py
- test_mcp_server.py
- test_overview.py
- test_security.py
- test_smoke.py
- test_spotlight.py
- test_update.py
- test_web.py
- test_web_exports.py
- test_workflows.py
- test_workspace.py
- .DS_Store
- .gitignore
- .pre-commit-config.yaml
- CHANGELOG.md
- CLAUDE.md
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- LICENSE
- mkdocs.yml
- NOTICE
- pyproject.toml
- README.md
- secchi-secchi-package-2026-08-13.md
- secchi-secchi-package-2026-08-14.md
- secchi.toml
- SECURITY.md
- uv.lock
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
compare
View Details ▼
compare
This command is an alias of `magick compare`.
tldr magick compare
View documentation for the original command:
npm
View Details ▼
npm
JavaScript and Node.js package manager.
Manage Node.js projects and their module dependencies.
Some subcommands such as `install`, `run`, etc. have their own usage documentation.
npm init {{[-y|--yes]}}
Create a `package.json` file with default values (omit `--yes` to do it interactively):
npm {{[i|install]}}
Download all the packages listed as dependencies in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
pipx
View Details ▼
pipx
Install and run Python applications in isolated environments.
pipx run {{pycowsay}} {{moo}}
Run an app in a temporary virtual environment:
pipx install {{package}}
Install a package in a virtual environment and add entry points to path:
pipx uninstall {{package}}
Uninstall a package:
uv run
View Details ▼
uv run
Run a command or script in the project environment.
uv run {{path/to/script.py}}
Run a Python script:
uv run {{[-m|--module]}} {{module_name}}
Run a Python module:
uv run {{[-w|--with]}} {{package}} {{command}}
Run a command with additional packages installed temporarily:
uv sync
View Details ▼
uv sync
Update the project's environment to match the lockfile.
uv sync
Sync the project environment with the lockfile:
uv sync --all-extras
Sync and include all optional dependencies:
uv sync --extra {{extra_name}}
Sync with specific optional dependencies:
uv tool
View Details ▼
uv tool
Install and run commands provided by Python packages.
uv tool run {{command}}
Run a command from a package, without installing it:
uv tool install {{package}}
Install a Python package system-wide:
uv tool upgrade {{package}}
Upgrade an installed Python package:
uvx
View Details ▼
uvx
This command is an alias of `uv tool run`.
tldr uv tool
View documentation for the original command:
yes
View Details ▼
yes
Output something repeatedly.
This command is commonly used to answer yes to every prompt by install commands (such as `apt-get`).
yes
Repeatedly output `y`:
yes {{value}}
Repeatedly output a specified value:
yes | sudo apt-get install {{program}}
Accept everything prompted by the `apt-get` command:
