Skip to content

capability

Manage capabilities in your project.

List discovered capabilities and their enabled status.

Terminal window
omnidev capability list

Use --verbose to see detailed version information and check for available updates:

Terminal window
omnidev capability list --verbose

This shows:

  • Version: from capability.toml, plugin.json, package.json, or commit/content hash
  • Version source: where the version was detected from
  • Commit: for git sources
  • Content hash: for file sources (SHA-256)
  • Last update: timestamp of last sync
  • Update available: when a newer version exists in the remote repository

Example output:

Capabilities:
✓ enabled My Cap
ID: my-cap
Version: 1.0.0 → 1.1.0 available

Enable a capability in the active profile.

Terminal window
omnidev capability enable tasks

Disable a capability in the active profile.

Terminal window
omnidev capability disable tasks

After enabling or disabling, run:

Terminal window
omnidev sync

To create a new capability, see capability new.