docs: catch website up to v0.3.3#33
Merged
Merged
Conversation
…es + edges, providers) The AGE-2/3/4/5 PRs (#29-#32) shipped behavior changes without doc updates. Bring docs/website in line: - index/embed run in parallel by default; document --serial and demote -j/--parallel to a retained no-op (indexing, getting-started, code-intelligence help snapshots + synopsis) - ctx duplicates now fingerprints Solidity via the solang-parser lexer; drop the "skipped" caveats and set skipped_languages: [] (duplicates, code-intelligence, json-output, score) - Solidity modifier applications emit calls edges and qualified library calls Lib.fn() resolve (language-support) - round out provider docs: add Ollama to the embed providers table and offer --provider <local|openai|ollama> in similar/smart (code-intelligence, similar, smart)
saldestechnology
added a commit
that referenced
this pull request
Jul 12, 2026
* fix: drop stray docs/website/docs/.ctx index db and ignore nested .ctx dirs PR #33 accidentally committed a 155 KB ctx index (codebase.sqlite) under docs/website/docs/.ctx/. The root .gitignore rule '.ctx/*' is anchored to the repo root, so nested .ctx dirs were never ignored. Remove the file and add '**/.ctx/*' (keeping config.toml) so it can't recur. * docs: refresh whole-repo token figure to current size The codebase grew well past the old 233,169-token figure. Re-measured with `ctx --count-only` (cl100k_base, default): 502,856 tokens. Update every instance and the derived ratio vs the ~8,700-token task-scoped example (now ~58x, was 27x) across the README, why-ctx, using-ctx-with-agents, and the messaging reference.
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.
The v0.3.3 code changes (PRs #29–#32) shipped without doc updates — only the Ollama PR (#28) touched docs. This brings the published tree (
docs/website/docs/, the only tree the Deploy Docs workflow builds) in line.Changes
Parallel by default /
--serial(#31) — docs still described-j/--parallelas an opt-in:guides/indexing.md,getting-started.md— flag tables + examples now say parallel is the default and--serialopts outcode-intelligence.md— both--helpsnapshots and theembedsynopsis updated;-jnoted as a retained no-opSolidity duplicates (#30) — docs claimed Solidity is skipped/never fingerprinted:
commands/duplicates.md,code-intelligence.md,json-output.md,commands/score.md— dropped the "skipped" caveats, setskipped_languages: [], documented the solang-parser lexer normalizationSolidity modifier + qualified-call edges (#29/#32):
language-support.md— added an "Extracted edges" block: modifier applications emitcallsedges;Lib.fn()qualified library calls resolveProvider consistency (rounding out #28):
code-intelligence.md— added Ollama to the embed providers tablecommands/similar.md,commands/smart.md— offer--provider <local|openai|ollama>;--openainoted as a deprecated aliasCHANGELOG's
[0.3.3]section was already complete; no change there.