Remove edge middleware for routing Markdown requests#5
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
petradonka
approved these changes
Apr 30, 2026
hongyi-chen
added a commit
that referenced
this pull request
May 19, 2026
…ries (#101) * Audit pass 3: Memory + Handoff polish, cross-references, glossary entries Final audit pass over hyc/orchestration-launch ahead of the rollout PR. Covers the deltas from #86 (Agent Memory research preview) and #85 (local\u2194cloud handoff) that landed after audit pass 2. Sentence case / Title Case: - capabilities/skills.mdx:414: '## Suggested Skills from Agent Memory' -> '## Suggested skills from Agent Memory'. The section body uses lowercase 'skill drafts', so the heading should match. Also clears the one new style_lint warning introduced by #86. Stale config: - agent-platform/agent-memory/index.mdx: drop '(Research Preview)' from the frontmatter sidebar.label. sidebar.ts already overrides the label to 'Agent Memory' under a group named 'Memory (Research Preview)'; the duplicate annotation was dead config. Cross-link gaps from neighboring pages: - cloud-agents/viewing-cloud-agent-runs.mdx (the '5. Fork the session to your local Warp' section): add a one-line reference to the new Handoff overview, so the cloud-to-local direction is discoverable from the broader handoff doc. - cloud-agents/managing-cloud-agents.mdx: add a Related pages section that links to the Handoff overview and the other neighbors that weren't surfaced before. - local-agents/cloud-conversations.mdx (Related features): add a link to the Handoff overview, since handoff relies on cloud-synced conversations. Style: - cloud-agents/handoff/index.mdx:30: drop 'just' from 'not just read about it' -> 'not only read about it'. Same ableist-language pattern audit pass 2 cleaned up elsewhere. Glossary additions: - .agents/references/terminology.md (Agent concepts) + AGENTS.md (Core features): add canonical entries for 'Agent Memory', 'memory store', and 'Handoff' so the launch terms ship with documented capitalization rules ('Agent Memory' Title Case as a feature; 'memory store' lowercase common noun; 'Handoff' Title Case as the feature, lowercase 'hand off' / 'handed off' as the verb). Validation: - check_links --internal-only: 0 broken across 2,543 internal links (up 6 from the 2,537 baseline, matching the 6 new cross-refs). - style_lint --changed: 14 warnings (one fewer than baseline; the skills.mdx Title Case heading is no longer flagged). The remaining warnings are all pre-existing proper-name false positives. - npm run build: 330 pages built; sidebar still resolves all slugs; new anchor reference (#5-fork-the-session-to-your-local-warp) resolves. Co-Authored-By: Oz <oz-agent@warp.dev> * Restore (Research Preview) suffix in agent-memory sidebar.label Revert the sidebar.label change from the audit pass. Keeping the research-preview annotation in the frontmatter as a defensive fallback in case the sidebar.ts override is ever removed. Co-Authored-By: Oz <oz-agent@warp.dev> --------- Co-authored-by: Oz <oz-agent@warp.dev>
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
We're noticing that pageviews are unexpectedly missing in our dashboard. It's possible that edge middleware is swallowing these events.
The intent of this edge middleware is to route LLM requests to the Markdown format for pages when they present the text/markdown heading. In my testing, this doesn't work as expected, so it's worth removing this for now anyways until we can verify a working solution.
Follow-ups
We'll want to get a working version of LLM routing to Markdown routes working later.