docs(roadmap): add #424 — init json dual artifact schema: artifacts[] vs flat created/skipped/updated#2968
Closed
code-yeongyu wants to merge 1 commit intomainfrom
Closed
Conversation
…acts[] and flat created/skipped/updated
Contributor
|
Closing this roadmap-only follow-up for now. The observation is understandable, but this is a docs/roadmap proposal about future JSON schema cleanup rather than a direct fix PR. I’m keeping the active queue focused on concrete fixes and already-reviewed owner-authored changes. If this becomes a code fix PR with tests that establishes one canonical — |
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.
Pinpoint #424
init --output-format jsonemits the same data in two parallel schemas simultaneously.Live output:
{ "kind": "init", "project_path": "/tmp/probe", "created": [".claw/"], "skipped": [".claw.json", ".gitignore", "CLAUDE.md"], "updated": [], "artifacts": [ {"name": ".claw/", "status": "created"}, {"name": ".claw.json", "status": "skipped"}, {"name": ".gitignore", "status": "skipped"}, {"name": "CLAUDE.md", "status": "skipped"} ], "next_step": "Review and tailor the generated guidance", "message": "Init\n Project /tmp/probe\n .claw/ created\n ..." }.claw/appears in bothcreated[0]andartifacts[0].status=="created". No deprecation signal, no canonical marker. Post-fix residue from ROADMAP #79.ROADMAP-only PR. No source/test changes.