SP-316: remove asset-registry methodology command#358
Open
Kastriot Salihu (ksalihu) wants to merge 1 commit into
Open
SP-316: remove asset-registry methodology command#358Kastriot Salihu (ksalihu) wants to merge 1 commit into
Kastriot Salihu (ksalihu) wants to merge 1 commit into
Conversation
Removes the `asset-registry methodology` subcommand and its
`/pacman/api/core/asset-registry/methodologies/{assetType}` API call
from content-cli, including the corresponding service method, module
registration, interface field, tests, and user-guide / skill docs.
Includes-AI-Code: true
Co-authored-by: Cursor <cursoragent@cursor.com>
|
Meris Nici (promeris)
approved these changes
May 22, 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.



Summary
Removes the
asset-registry methodologysubcommand from content-cli. The corresponding methodology endpoint is being phased out from the platform's asset registry surface, so the CLI no longer exposes it.Linked
https://celonis.atlassian.net/browse/SP-316
What changed
src/commands/asset-registry/module.ts— drop themethodologysubcommand registration and its private handler.src/commands/asset-registry/asset-registry.service.ts— dropgetMethodology()and theendpoints.methodologyline inlogDescriptorDetail.src/commands/asset-registry/asset-registry-api.ts— dropgetMethodology()(GET /pacman/api/core/asset-registry/methodologies/{assetType}).src/commands/asset-registry/asset-registry.interfaces.ts— drop the optionalmethodologyfield fromAssetEndpoints.asset-registry-methodology.spec.ts; remove methodology fixtures and assertions from theget,list, andmodulespecs.docs/user-guide/asset-registry-commands.md, methodology examples fromdocs/user-guide/agentic-development-guide.md, and methodology references from.cursor/skills/asset-registry-endpoints/SKILL.md.Test plan
npx jest— full suite (348 tests / 41 suites) passes.npm run build— TypeScript compile succeeds.node dist/content-cli.js asset-registry --help—methodologyno longer listed.node dist/content-cli.js asset-registry methodology --assetType BOARD_V2—error: unknown command 'methodology'.methodologreturns zero matches.Made with Cursor