@withpica/mcp-server 2.73.0 → 2.74.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +32 -0
- package/dist/index.js +0 -0
- package/dist/lib/changelog.generated.d.ts +2 -2
- package/dist/lib/changelog.generated.d.ts.map +1 -1
- package/dist/lib/changelog.generated.js +2 -2
- package/dist/lib/changelog.generated.js.map +1 -1
- package/dist/resources/required-schemas.generated.d.ts +2 -2
- package/dist/resources/required-schemas.generated.d.ts.map +1 -1
- package/dist/resources/required-schemas.generated.js +3 -1
- package/dist/resources/required-schemas.generated.js.map +1 -1
- package/dist/skills/skills.generated.d.ts.map +1 -1
- package/dist/skills/skills.generated.js +10 -1
- package/dist/skills/skills.generated.js.map +1 -1
- package/dist/tools/bulk.d.ts +1 -0
- package/dist/tools/bulk.d.ts.map +1 -1
- package/dist/tools/bulk.js +81 -0
- package/dist/tools/bulk.js.map +1 -1
- package/dist/tools/credits.d.ts.map +1 -1
- package/dist/tools/credits.js +5 -0
- package/dist/tools/credits.js.map +1 -1
- package/dist/tools/dashboard.d.ts.map +1 -1
- package/dist/tools/dashboard.js +6 -2
- package/dist/tools/dashboard.js.map +1 -1
- package/dist/tools/discovery.d.ts.map +1 -1
- package/dist/tools/discovery.js +1 -0
- package/dist/tools/discovery.js.map +1 -1
- package/dist/tools/exports.d.ts.map +1 -1
- package/dist/tools/exports.js +22 -1
- package/dist/tools/exports.js.map +1 -1
- package/dist/tools/metadata.d.ts.map +1 -1
- package/dist/tools/metadata.js +10 -1
- package/dist/tools/metadata.js.map +1 -1
- package/dist/tools/recordings.d.ts.map +1 -1
- package/dist/tools/recordings.js +9 -1
- package/dist/tools/recordings.js.map +1 -1
- package/dist/tools/recovery-hints.d.ts.map +1 -1
- package/dist/tools/recovery-hints.js +12 -0
- package/dist/tools/recovery-hints.js.map +1 -1
- package/package.json +1 -1
- package/.claude/settings.local.json +0 -5
- package/dist/tools/team.d.ts +0 -22
- package/dist/tools/team.d.ts.map +0 -1
- package/dist/tools/team.js +0 -169
- package/dist/tools/team.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
11
11
|
|
|
12
12
|
## [Unreleased]
|
|
13
13
|
|
|
14
|
+
## [2.74.0] - 2026-06-14
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
|
|
18
|
+
- **`pica_recordings_bulk_reassign_artist`** — bulk-repoint recordings'
|
|
19
|
+
`primary_artist_id` in one atomic call (by explicit `recording_ids` or by
|
|
20
|
+
`from_person_id` to drain a junk "magnet" person; `to_person_id` null
|
|
21
|
+
clears). Runs under `write:catalog` — no destructive scope needed, because
|
|
22
|
+
it only re-points the structured link (the `artist_name` label is
|
|
23
|
+
untouched). Returns `source_now_empty` so a drained junk person can be
|
|
24
|
+
retired. The fix for the "unknown" artist magnet class.
|
|
25
|
+
- **`clean-up-artists` skill** — guided junk-artist cleanup: find magnets,
|
|
26
|
+
build a plain-language repoint plan from each recording's own `artist_name`,
|
|
27
|
+
preview, execute via the bulk tool, retire emptied rows.
|
|
28
|
+
- **`primary_artist_id` on `pica_recordings_update`** — repoint a recording
|
|
29
|
+
to the correct in-org person (the service already validated it; the tool
|
|
30
|
+
param was missing).
|
|
31
|
+
|
|
32
|
+
### Changed
|
|
33
|
+
|
|
34
|
+
- Route validation errors now surface their real code + message to agents
|
|
35
|
+
instead of an opaque `UNKNOWN_ERROR` (via `@withpica/mcp-utils` 1.23.1).
|
|
36
|
+
|
|
14
37
|
## [2.73.0] - 2026-06-12
|
|
15
38
|
|
|
16
39
|
ADR-264 WS2 verify-before-assert + the WS4 front-door prerequisite (bulk
|
|
@@ -101,6 +124,15 @@ long-deprecated `pica_dashboard_pulse`.
|
|
|
101
124
|
case-insensitive name matching (ADR-265 behaviour) stays as the fallback,
|
|
102
125
|
and a name-matched org missing the bridge is backfilled when an identity
|
|
103
126
|
was resolved. Param addition only — no new tool.
|
|
127
|
+
- **`pica_recording_credits_update`** accepts an optional `instrument`
|
|
128
|
+
param (ADR-259 Stage 2) — the played instrument(s) for this credit, e.g.
|
|
129
|
+
`'drums'` or `'drums, bass'` (one credit per person; multiple instruments
|
|
130
|
+
list on the same row). Stored on `recording_credits.instrument`, rendered
|
|
131
|
+
in `/inspect`'s recording contributors table, and written by the Ableton
|
|
132
|
+
extension's attribution checklist. Server-side ADR-255 resolve-on-write
|
|
133
|
+
now also fires for ANY recording credit arriving without a `person_id`:
|
|
134
|
+
an exact org-scoped name match links it, anything else stays a free-text
|
|
135
|
+
draft (never auto-creates a person). Param addition only — no new tool.
|
|
104
136
|
- **`first-session` skill** now carries the calibrated-question library (ADR-267
|
|
105
137
|
Step 1): open-over-closed decision questions, diagnosis labels, no-oriented
|
|
106
138
|
phrasing for destructive moves, options-with-consequences, evidence-gated
|
package/dist/index.js
CHANGED
|
File without changes
|