Indexed
Reference

Index commands

indexed index * commands, flags, and defaults.

Index commands

Reference for indexed index *. For global options (before COMMAND) and for init, docs, and license at the top level, see Other commands (and the sections below that). For walkthroughs, see Create, inspect, update & remove.

Subcommands such as indexed index create files and indexed index create jira also expose Logging and Storage option groups (after the subcommand) — in addition to any global options you pass between indexed and index. Run indexed index create files --help to see the exact groups.


indexed index create

Create a new collection from a connector. Available connectors: files, jira, and confluence (indexed index create --help).

indexed index create files

indexed index create files [OPTIONS]
OptionDefaultDescription
--collection / -cfilesCollection name
--path / -pRoot path or file(s); from config or prompt if omitted
--includeRegex patterns to include (repeatable)
--excludeRegex patterns to exclude (repeatable)
--fail-fast / --no-fail-fastno-fail-fastStop on the first file read error
--use-cache / --no-cacheuse-cacheOn-disk parse cache for faster reindexing
--forceoffRemove an existing collection with the same name first
--respect-gitignore / --no-respect-gitignorerespect-gitignoreHonor .gitignore and common noise directories
--local (Storage)offStore the collection under ./.indexed/ instead of ~/.indexed/
Logging--verbose / -v, --log-level, --json-logs (see indexed index create files --help)

Example:

indexed index create files -c my-docs -p ./docs --include ".*\.md$" --force

indexed index create jira

indexed index create jira [OPTIONS]
OptionDefaultDescription
--collection / -cjiraCollection name
--url / -uJira base URL; from config or prompt if omitted
--jql / --query / -qJQL filter; from config or prompt if omitted
--emailAtlassian account email (overrides config / env)
--tokenAPI token (overrides env, e.g. ATLASSIAN_TOKEN)
--use-cache / --no-cacheuse-cacheOn-disk cache for unchanged issues
--forceoffRemove an existing collection with the same name first
Logging / StorageAs on create files (--local, --verbose, etc.)

Long-running credentials and env vars are covered in Config commands and the Jira guide.

Example:

indexed index create jira -c eng-tickets \
  -u https://company.atlassian.net \
  -q "project = ENG AND created >= -90d"

indexed index create confluence

indexed index create confluence [OPTIONS]
OptionDefaultDescription
--collection / -cconfluenceCollection name
--url / -uConfluence base URL; from config or prompt if omitted
--cql / --query / -qCQL filter; from config or prompt if omitted
--emailAtlassian account email (overrides config / env)
--tokenAPI token (overrides env, e.g. ATLASSIAN_TOKEN)
--read-all-comments / --first-level-commentsread-all-commentsAll nested comments vs top level only
--use-cache / --no-cacheuse-cacheOn-disk cache for unchanged pages
--forceoffRemove an existing collection with the same name first
Logging / StorageAs on create files (--local, --verbose, etc.)

Example:

indexed index create confluence -c team-wiki \
  -u https://company.atlassian.net/wiki \
  -q "space = ENG AND type = page"

indexed index search [OPTIONS] QUERY

QUERY is a required argument (natural language). Place global flags like --simple-output before index for machine-readable output.

OptionDefaultDescription
--collection / -call collectionsLimit to one collection by name
--limit / -l5Max results per collection
--compactoffCompact list instead of cards
--no-contentoffHide content previews
Logging--verbose / -v, --log-level, --json-logs

With indexed --simple-output index search …, JSON includes query, total_collections_searched, total_documents_found, total_chunks_found, and results. Each element of results has rank, relevance_score, collection, document_id, document_url, chunk_number, and text. Treat scores as ordering guidance within one response — see Search Index.

Examples:

indexed index search "authentication methods"
indexed index search "rate limiting" -c eng-tickets -l 10
indexed --simple-output index search "deploy" -l 3

indexed index inspect

indexed index inspect [OPTIONS] [NAME]
Argument / optionDescription
NAMEOptional. Omit to list all collections; set to inspect one in detail.
--verbose / -vWhen listing all collections, show more detail.

Examples:

indexed index inspect
indexed index inspect my-docs
indexed --simple-output index inspect

indexed index update

indexed index update [OPTIONS] [COLLECTION]
Argument / optionDescription
COLLECTIONOptional. Omit to update every collection.
Logging--verbose / -v, --log-level, --json-logs

Examples:

indexed index update eng-tickets
indexed index update

indexed index remove

indexed index remove [OPTIONS] COLLECTION
OptionDefaultDescription
COLLECTIONRequired: collection to remove.
--force / -foffSkip confirmation.
Logging--verbose / -v, --log-level, --json-logs
Removal is permanent. Data under the collection directory is deleted. There is no undo.

Examples:

indexed index remove my-docs
indexed index remove my-docs --force