agentsclimarketplace

Vibeknow core

Skill vibeknow/cli/skills/vibeknow-core

Official VibeKnow CLI — turn documents and URLs into professional videos in one command. Built for humans and AI agents, with ready-to-use skills for AI Agent.

Install
npx -y skills add vibeknow/cli --skill vibeknow-core

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 5 stars5 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

vibeknow CLI setup, authentication, profile management, and diagnostics. Use when: first-time setup, auth errors, switching environments, diagnosing connection issues.

SKILL.md

4.4 KB, as published. Nobody here has run it

vibeknow-core

TRIGGER

  • First-time vibeknow setup or onboarding
  • Authentication errors or credential issues
  • Switching between environments (dev/staging/prod)
  • Diagnosing connection or endpoint problems
  • Managing profiles or config values

SKIP

  • Video generation, status, download → use vibeknow-create
  • Document upload or status → use vibeknow-doc

Core Concepts

  • Profile: A named environment config (endpoints + credential). Supports dev/staging/prod switching via vibeknow profile use <name>.
  • Credential priority: VIBEKNOW_TOKEN env var > OS keychain > encrypted file. The env var overrides everything and cannot be cleared by logout.
  • Endpoint trust boundary: Profiles pointing to localhost or non-official domains must set --trust dev --is-production=false, or the CLI refuses to start.
  • Doctor: Runs endpoint reachability checks and token validation. Use it first when anything seems wrong.

Quick Reference

CommandDescription
vibeknow auth statusShow credential source and active profile
vibeknow auth whoamiPrint current authenticated user
vibeknow auth logoutClear stored credential for current profile
vibeknow profile add NAMEAdd a new profile
vibeknow profile use NAMESwitch active profile
vibeknow profile listList all profiles
vibeknow profile show [NAME]Show profile details (default: current)
vibeknow profile remove NAMEDelete a profile
vibeknow config get KEYRead a config value
vibeknow config set KEY VALUEWrite a config value
vibeknow config listList all config keys
vibeknow doctorDiagnose local setup and endpoint reachability

For full flags and output examples, see commands.md.

Common Tasks

Check if vibeknow is working

vibeknow doctor
vibeknow auth status

Set up a new dev environment

vibeknow profile add dev \
  --endpoint-figlens http://localhost:20067 \
  --trust dev \
  --is-production=false \
  --credential-ref vibeknow.dev
vibeknow profile use dev
vibeknow doctor

Switch between environments

vibeknow profile list              # see available profiles
vibeknow profile use prod          # switch to prod
vibeknow auth status               # verify credentials

Diagnose auth failure

vibeknow auth status               # check credential source
vibeknow auth whoami               # verify identity
vibeknow doctor                    # check endpoint reachability

Exit Code Handling

ExitMeaningAction
0Success
1General errorCheck stderr message
2Invalid argumentsFix command syntax
3Auth errorRun vibeknow auth status, check credential source
130User interrupt (SIGINT)

For full exit code and error code reference, see errors.md.

Output Formats

All core commands support --output text|json|ndjson:

vibeknow auth status --output json    # structured output
vibeknow profile list --output json   # machine-readable profile list

References

  • commands.md — Full flag reference for all 12 subcommands
  • errors.md — Exit codes, error codes, and Error Object schema

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.