docs: update ccc skill install + init guidance#134
Merged
Conversation
Follow-up to #132: the skill's management.md still said `pipx install cocoindex-code` and described `ccc init` as a purely non-interactive command. Update to reflect: - Two install styles — `[default]` (batteries included) vs bare (slim, LiteLLM-only). - First-run `ccc init` is interactive; prompts for provider/model and runs a test embed via the daemon. - `--litellm-model MODEL` flag for non-TTY / scripted use. - Pointer to `ccc doctor` if the init model test fails.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Follow-up to #132. The
skills/cccdocs still described the pre-#132 install and init behavior:pipx install cocoindex-code— which after feat: make sentence-transformers optional; interactiveccc init#132 is slim (LiteLLM-only). Agents reading the skill would no longer get the local-embedding default they expect.ccc initwas described as purely non-interactive — no mention of the new prompts,--litellm-modelflag, orccc doctorpointer on model-test failure.This PR updates skills/ccc/references/management.md to cover:
[default](batteries included) vs bare (slim).--litellm-modelflag for non-TTY / scripted use.ccc doctoras the recovery path if the init model test fails.Test plan
Docs-only; CI runs the usual lint/type/tests anyway.