feat: display input/context artifact IDs in list_session_tasks#251
Merged
nikosbosse merged 2 commits intomainfrom Feb 27, 2026
Merged
feat: display input/context artifact IDs in list_session_tasks#251nikosbosse merged 2 commits intomainfrom
nikosbosse merged 2 commits intomainfrom
Conversation
Show input_artifact_ids and context_artifact_ids alongside the existing output artifact when listing tasks in a session. Also rename the field from artifact_id to output_artifact_id to match the engine API rename. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
RafaelPo
reviewed
Feb 27, 2026
| artifact = ( | ||
| f" | output_artifact: {t['artifact_id']}" if t.get("artifact_id") else "" | ||
| output = ( | ||
| f" | output_artifact: {t['output_artifact_id']}" |
Contributor
There was a problem hiding this comment.
nit: output_artifact_id. same below
RafaelPo
approved these changes
Feb 27, 2026
output_artifact_id, input_artifact_ids, context_artifact_ids instead of abbreviated labels. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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
artifact_idtooutput_artifact_idineveryrow_list_session_tasksoutput to match the engine API field renameinput_artifact_idswhen present on a taskcontext_artifact_idswhen present on a taskThis gives MCP clients (e.g. everyrow-cc) visibility into which artifacts were used as inputs/context for each task in a session, enabling better session resume and artifact lineage tracking.
Dependency
Depends on the companion engine PR in
futuresearch/delphosthat addsoutput_artifact_id,input_artifact_ids, andcontext_artifact_idsfields to theGET /sessions/{id}/tasksendpoint response.Test plan
everyrow_list_session_tasksoutput includes input/context artifact IDs when present🤖 Generated with Claude Code