chore: version packages#105
Merged
Merged
Conversation
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
@skill-map/spec@0.54.0
Minor Changes
New committed project setting
allowSidecarWriters(defaulttrue) lets shared projects forbid every extension that writes.smannotation sidecars. Actions declare the capability viawrites: ['sidecar']on their manifest; when the policy isfalsethe scan composer drops those actions (buttons never render) and the sidecar store refuses the write (BFF 403sidecar-writers-forbidden), a hard gate that wins over the per-machineallowEditSmFilesconsent.User-facing
Shared projects can now turn off sidecar writers: a new Project setting stops actions from creating or editing the
.smfiles next to your notes. It is saved in the committed settings.json so it applies to the whole team and cannot be overridden locally.Patch Changes
The inspector tag row (
<sm-node-tags>) is now an inline editor:core/node-set-tagsno longer self-projects aninspector.action.button; a pencil opens an add / remove editor (shown even with no tags) that offers the tags already present in the graph as click-to-add chips, derived live from the loaded scan; typing a brand-new tag still works. The author guide's self-projection example switched from Edit tags to Set stability.User-facing
Edit a node's tags right where they are shown: click the pencil in the inspector's tag row to add or remove them inline, with one-click chips for tags already used in your graph (you can still type new ones). The separate Edit tags button is gone.
Add a standalone plugin quickstart doc (a short scaffold then fill then run path with the plugin-lifecycle diagram and links into the full author guide), indexed in the spec README and published in the package. The now-redundant Quick start section was removed from the author guide and its unique co-located-files note (text.ts, the colocated test) folded into the Manifest section as a "Files by convention" paragraph.
Editorial pass tightening the spec prose docs for concision (lossless, no normative change: no schema, field, enum, exit code, or MUST/SHOULD touched, and the verbatim prompt preamble still matches the conformance fixture), plus a new non-normative "Plugin lifecycle at a glance" overview atop the plugin author guide with an ASCII diagram of the deterministic flow (Provider, Extractor, Analyzer, Action, Formatter) and Hook off to the side, each with a one-line purpose and short example.
@skill-map/cli@0.60.0
Minor Changes
New committed project setting
allowSidecarWriters(defaulttrue) lets shared projects forbid every extension that writes.smannotation sidecars. Actions declare the capability viawrites: ['sidecar']on their manifest; when the policy isfalsethe scan composer drops those actions (buttons never render) and the sidecar store refuses the write (BFF 403sidecar-writers-forbidden), a hard gate that wins over the per-machineallowEditSmFilesconsent.User-facing
Shared projects can now turn off sidecar writers: a new Project setting stops actions from creating or editing the
.smfiles next to your notes. It is saved in the committed settings.json so it applies to the whole team and cannot be overridden locally.The inspector tag row (
<sm-node-tags>) is now an inline editor:core/node-set-tagsno longer self-projects aninspector.action.button; a pencil opens an add / remove editor (shown even with no tags) that offers the tags already present in the graph as click-to-add chips, derived live from the loaded scan; typing a brand-new tag still works. The author guide's self-projection example switched from Edit tags to Set stability.User-facing
Edit a node's tags right where they are shown: click the pencil in the inspector's tag row to add or remove them inline, with one-click chips for tags already used in your graph (you can still type new ones). The separate Edit tags button is gone.
Patch Changes
Fix the
--analyzers(CLI) and?analyzerId=(BFF) filter so a qualified<plugin>/<id>form matches the persisted short analyzer id (issues store the short kebab id with no slash, perissue.schema.json). Before, only a short filter matched, sosm check --analyzers core/node-stabilityreturned nothing while the barenode-stabilityworked. BothmatchesAnalyzerFilterand the/api/issuesSQL now reduce a qualified filter entry to its suffix; the short form is unchanged.User-facing
sm check --analyzers core/<id>now matches issues, not only the bare<id>form.Fix a stale doc comment in the
annotation-orphananalyzer: the header claimednodeIdsis empty, but the analyzer sets it to the orphan's would-be.mdpath (the missing sibling, to satisfy the issue schema'sminItems: 1). Comment-only; no behavior change.Sanitize the tags written by the
core/node-set-tagsaction: it now keeps strings only, trims them, drops empty entries (theannotations.tagsschema requires non-empty items), and dedups, instead of writing the free-form input verbatim. Prevents the Edit tags flow from producing a schema-violating or messy sidecar.User-facing
Editing a node's tags now drops blank and duplicate entries and trims whitespace, instead of saving them as-is.
The
node-stabilityexperimental / deprecated card-footer chips were being suppressed:card.footer.rightis a counter slot that treatsvalue: 0as empty, and the contributions setemitWhenEmpty: false, so the badges never rendered. They now emit-when-empty and show again as icon-only badges (thefa-flask/pi-banicon carries the meaning, value is always 0).User-facing
The experimental / deprecated badge on a node's card now shows again.
@skill-map/web@0.3.5
Patch Changes
.skill-map/directory) and treats an issues-found scan (sm scanexit 1) as a successful build, aborting only on an operational error (exit >= 2). This keeps the non-interactive demo dataset build deterministic for a fixture that ships both a rootAGENTS.mdand a.claude/marker plus deliberate findings.