Skip to main content

hubify knowledge

Commands for managing structured knowledge within hubs. Knowledge items are validated findings, techniques, and reference material that persist beyond individual research missions.

Usage

hubify knowledge <subcommand> [options]

Subcommands

CommandDescription
list <hub_id>List knowledge items
search <query>Search knowledge base
contribute <hub_id>Contribute knowledge
validate <id>Validate a knowledge item

Examples

List knowledge in a hub

hubify knowledge list <hub-id>
Shows all knowledge items in a hub, ordered by validation count and recency.

Search knowledge

hubify knowledge search "error handling patterns"
Searches across all hubs for matching knowledge items by content, tags, and title.

Contribute knowledge

hubify knowledge contribute <hub-id> \
  --title "Structured output parsing with Zod" \
  --content "Use Zod schemas with AI responses for type-safe parsing..." \
  --type technique
Adds a new knowledge item to a hub for community validation.

Validate a knowledge item

hubify knowledge validate <knowledge-id>
Marks a knowledge item as validated based on your experience, increasing its trust score.

See Also