chore: version packages#24
Merged
SutuSebastian merged 1 commit intomainfrom Apr 27, 2026
Merged
Conversation
SutuSebastian
approved these changes
Apr 27, 2026
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@stainless-code/codemap@0.3.0
Minor Changes
ebd4c34Thanks @SutuSebastian! - Agent-friendly CLI surface plus a schema v3 bump that tightensNOT NULLinvariants. Existing.codemap.dbfiles auto-rebuild on first open.codemap validate [--json] [paths...]— diffs the on-disk SHA-256 of indexed files againstfiles.content_hashand prints stale / missing / unindexed rows. Lets agents skip re-reads they don't need; exits1on any drift (git-status semantics)codemap context [--compact] [--for "<intent>"]— emits a stable JSON envelope (project metadata, top hubs, recent markers, recipe catalog) for any agent or editor that wants the index in one cheap shot.--forruns lightweight intent classification (refactor / debug / test / feature / explore / other) and returns matched recipe ids plus a hintcodemap --performanceflag — prints a per-phase timing breakdown (collect / parse / insert / index_create) and the top-10 slowest files by parse time during full rebuilds, for triaging giant or pathological inputs-rshort alias forcodemap query --recipe+ cleaner organizedcodemap query --help(sectioned flags, dynamic recipe-id padding, examples for both forms)deprecated-symbols(@deprecatedJSDoc tag scan),visibility-tags(@internal/@private/@alpha/@beta),files-hashes(powersvalidate),barrel-files(top files by export count).codemap.dberror:no such table: <X>now rewrites to an actionable hint pointing atcodemap/codemap --full, on both the JSON and human pathsIndexPerformanceReport;IndexRunStats.performance?field; per-field JSDoc coverage onIndexResult,IndexRunStats,ResolvedCodemapConfig, alldb.tsrow interfaces (FileRow,SymbolRow,ImportRow,ExportRow,ComponentRow,DependencyRow,MarkerRow,CssVariableRow,CssClassRow,CssKeyframeRow,CallRow,TypeMemberRow), andParsedFiledocs/why-codemap.mdadds a "What Codemap is not" anti-pitch section and a scenario-keyed token-savings table (single lookup → 50-turn session) replacing the earlier hand-waveprefer-const,consistent-type-specifier-style,consistent-type-definitions,no-confusing-non-null-assertion,no-unnecessary-{boolean-literal-compare,template-expression,type-assertion},prefer-{includes,nullish-coalescing,optional-chain}, andunicorn/switch-case-bracesNOT NULLinvariants: every column whoseRow-interface type was non-nullable is nowNOT NULLin the SQLite DDL (files.size/line_count/language/last_modified/indexed_at,symbols.line_start/line_end/signature/is_exported/is_default_export,imports.specifiers/is_type_only/line_number,exports.kind/is_default,components.hooks_used/is_default_export,markers.line_number/content,css_variables.scope/line_number,css_classes.is_module/line_number,css_keyframes.line_number,type_members.is_optional/is_readonly). Existing v2 databases auto-rebuild viacreateSchema()'s version-mismatch detector — no manual action needed