[FAQ] Add: writing large content and wiki pages from agentic workflows#28975
Closed
[FAQ] Add: writing large content and wiki pages from agentic workflows#28975
Conversation
Add a new FAQ entry under the Capabilities section covering: - Using repo-memory with wiki: true as the recommended way to write wiki pages (avoids body size limits entirely by using file-based writes) - The '[Content too large, saved to file:]' behavior for custom safe output jobs and a robust helper pattern for resolving file-referenced content fields Refs: github/agentic-workflows#491 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
Contributor
Comment MemoryNote This comment is managed by comment memory.It stores persistent context for this thread in the code block at the top of this comment. |
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.
Adds a new FAQ entry under the Capabilities section: "How do I write large content (like a wiki page) from an agentic workflow?"
What changed
New FAQ entry covering two related topics:
Recommended approach:
tools: repo-memorywithwiki: true— purpose-built for writing wiki pages. The agent writes files directly to the wiki git repo, bypassing the body size limit entirely.Custom safe output jobs: Documents the framework's
[Content too large, saved to file: <filename>]behavior and provides a robust JavaScript helper pattern for custom jobs that must receive large content.Why
Source issue: github/agentic-workflows#491
An OSS maintainer (aspire project) hit the inline body size limit in their custom safe output job that writes wiki pages. The workaround they discovered works, but the pattern wasn't documented anywhere and the better solution (
repo-memory: wiki: true) wasn't surfaced. This FAQ entry makes both the proper solution and the workaround discoverable.Type of change
New entry (no existing entry covers this topic).