Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/implementation/mcp-cli-parity.md
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ When a new tool lands with both MCP and CLI surfaces:
- **`metadata` dropped.** `ChangelogEntry.metadata` is backend
`GenericJSON`; v1 envelope drops it entirely rather than
guessing at its shape. Revisit via agent feedback
(`TODO(pkgseer-backend)` anchor on the service type).
(`TODO(backend)` anchor on the service type).
- **`source: null` promoted to `NOT_FOUND`.** The service layer
promotes the null-source case to a typed
`PackageIntelligenceChangelogSourceNotFoundError` which the
Expand Down
2 changes: 1 addition & 1 deletion src/services/package-intelligence-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ export interface ChangelogEntryDetail {
body?: string;
htmlUrl?: string;
publishedAt?: string;
/** TODO(pkgseer-backend): surface when shape is documented. */
/** TODO(backend): surface when shape is documented. */
metadata?: UntypedGenericJSON;
}

Expand Down
2 changes: 1 addition & 1 deletion src/services/promote-version-not-found.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* promotes it to the typed {@link PackageIntelligenceVersionNotFoundError}
* so downstream surfaces can render structured, actionable error details.
*
* TODO(pkgseer-backend): remove once the upstream resolvers all emit
* TODO(backend): remove once the upstream resolvers all emit
* the typed `extensions.code = "VERSION_NOT_FOUND"` payload. The typed
* path in `createGraphQLError` already handles the structured shape;
* deleting this helper plus its fallback-specific service tests will
Expand Down
2 changes: 1 addition & 1 deletion src/shared/package-changelog-response.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
* version / date / URL timeline.
* - **`metadata` dropped from envelope.** Source-specific opaque
* JSON; live-smoke observations will inform a typed passthrough
* later. TODO(pkgseer-backend) marker in the service types.
* later. TODO(backend) marker in the service types.
*/

import type { ChangelogReport } from "../services/index.js";
Expand Down
2 changes: 1 addition & 1 deletion src/shared/package-vulnerabilities-request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* tool accepts canonical package versions, not git refs; the live
* backend currently answers these with an unhelpful generic error,
* so we fail fast with an actionable client-side message instead.
* TODO(pkgseer-backend): replace this narrow guard with typed,
* TODO(backend): replace this narrow guard with typed,
* ecosystem-aware version validation from the backend. Do not grow
* ad hoc normalization rules here.
*/
Expand Down
Loading