Skip to content

docs: add AEO drafting workflow guidance#159

Open
rachaelrenk wants to merge 2 commits into
mainfrom
rachael/aeo-workflow-updates
Open

docs: add AEO drafting workflow guidance#159
rachaelrenk wants to merge 2 commits into
mainfrom
rachael/aeo-workflow-updates

Conversation

@rachaelrenk
Copy link
Copy Markdown
Contributor

Summary

  • Add a reusable aeo_brief skill for source-grounded AEO docs planning with Peec workflows, vocabulary mapping, scope guidance, and open questions.
  • Update docs drafting skills and templates so AEO/Peec/source-data requests start with an AEO brief and include pre-handoff review gates for scannability, terminology, usefulness, and human-review questions.
  • Update docs PR review guidance to check AEO/source-data fit, duplication risk, query vocabulary, and dense procedures.
  • Fix stale .warp/... references in touched workflow files and point guide guidance at the current src/content/docs/guides/ structure.

Validation

  • git diff --check
  • Verified touched files no longer contain stale .warp/skills, .warp/templates, or .warp/references paths.

Artifacts

Co-Authored-By: Oz oz-agent@warp.dev

Co-Authored-By: Oz <oz-agent@warp.dev>
@cla-bot cla-bot Bot added the cla-signed label May 29, 2026
@vercel
Copy link
Copy Markdown

vercel Bot commented May 29, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
docs Ready Ready Preview, Comment May 29, 2026 5:57pm

Request Review

@oz-for-oss
Copy link
Copy Markdown
Contributor

oz-for-oss Bot commented May 29, 2026

@rachaelrenk

I'm starting a first review of this pull request.

You can view the conversation on Warp.

I completed the review and no human review was requested for this pull request.

Comment /oz-review on this pull request to retrigger a review (up to 3 times on the same pull request).

Powered by Oz

Copy link
Copy Markdown
Contributor

@oz-for-oss oz-for-oss Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Overview

This PR adds an AEO brief skill and updates docs drafting/review workflows to account for Peec/source-data-driven documentation requests. The workflow direction is useful, but several newly added path references do not match the current docs repository structure, so following this guidance would send agents to nonexistent directories or nav files and create broken links.

Concerns

  • The updated guide drafting instructions name src/content/docs/guides/devops-and-infrastructure/ and src/content/docs/guides/frontend-and-ui/, but the actual guide directories are src/content/docs/guides/devops/ and src/content/docs/guides/frontend/.
  • The updated guide workflow and link-verification guidance point to per-section astro.config.mjs sidebar files that do not exist; guide sidebar entries are managed in src/sidebar.ts.
  • The guide template points writers at src/content/docs/agent-platform/third-party-agents/, but current third-party CLI agent pages live under src/content/docs/agent-platform/cli-agents/.
  • Security review: no security-specific findings; this is documentation/workflow guidance only and does not add executable code, dependencies, auth logic, or secret handling.
  • Spec context: no approved or repository spec context was provided, so there is no spec-alignment concern to raise.

Verdict

Found: 0 critical, 4 important, 0 suggestions

Request changes

Comment /oz-review on this pull request to retrigger a review (up to 3 times on the same pull request).

Powered by Oz

Comment thread .agents/skills/draft_guide/SKILL.md Outdated
Comment on lines +19 to +20
- `src/content/docs/guides/devops-and-infrastructure/` — Cloud logs, Docker, Kubernetes, testing, and database optimization
- `src/content/docs/guides/frontend-and-ui/` — Building and refining UI components with coding agents
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [IMPORTANT] These directory names do not exist in the repo; current guide content is under guides/devops/ and guides/frontend/, so agents following this will create pages outside the real structure.

Suggested change
- `src/content/docs/guides/devops-and-infrastructure/` — Cloud logs, Docker, Kubernetes, testing, and database optimization
- `src/content/docs/guides/frontend-and-ui/` — Building and refining UI components with coding agents
- `src/content/docs/guides/devops/` — Cloud logs, Docker, Kubernetes, testing, and database optimization
- `src/content/docs/guides/frontend/` — Building and refining UI components with coding agents

Comment thread .agents/skills/draft_guide/SKILL.md Outdated
- `src/content/docs/guides/frontend-and-ui/` — Building and refining UI components with coding agents

The sidebar nav is defined in `src/content/docs/university/astro.config.mjs (sidebar config)`, which organizes guides into topic-based sections. When adding a new guide, place the file in the appropriate directory above and add the nav entry under the matching section in `astro.config.mjs (sidebar config)`:
The sidebar nav is defined in `src/content/docs/guides/astro.config.mjs (sidebar config)`, which organizes guides into topic-based sections. When adding a new guide, place the file in the appropriate directory above and add the nav entry under the matching section in `astro.config.mjs (sidebar config)`:
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [IMPORTANT] src/content/docs/guides/astro.config.mjs does not exist; the Guides sidebar is configured in src/sidebar.ts, so this guidance sends agents to a missing file when adding nav entries.

Suggested change
The sidebar nav is defined in `src/content/docs/guides/astro.config.mjs (sidebar config)`, which organizes guides into topic-based sections. When adding a new guide, place the file in the appropriate directory above and add the nav entry under the matching section in `astro.config.mjs (sidebar config)`:
The sidebar nav is defined in `src/sidebar.ts`, which organizes guides into topic-based sections. When adding a new guide, place the file in the appropriate directory above and add the nav entry under the matching section in `src/sidebar.ts`:

Comment thread .agents/skills/draft_guide/SKILL.md Outdated
Before adding any internal documentation link:

- **Verify the target page exists.** Check the relevant `astro.config.mjs (sidebar config)` file (`src/content/docs/astro.config.mjs (sidebar config)`, `src/content/docs/agent-platform/astro.config.mjs (sidebar config)`, `src/content/docs/university/astro.config.mjs (sidebar config)`) to confirm the page is listed. Do NOT generate plausible-looking URLs to pages that don't exist.
- **Verify the target page exists.** Check the relevant `astro.config.mjs (sidebar config)` file (`src/content/docs/astro.config.mjs (sidebar config)`, `src/content/docs/agent-platform/astro.config.mjs (sidebar config)`, `src/content/docs/guides/astro.config.mjs (sidebar config)`) to confirm the page is listed. Do NOT generate plausible-looking URLs to pages that don't exist.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [IMPORTANT] The listed per-space astro.config.mjs files are not present in this repo; link verification should check src/sidebar.ts plus the target MDX file instead.

Suggested change
- **Verify the target page exists.** Check the relevant `astro.config.mjs (sidebar config)` file (`src/content/docs/astro.config.mjs (sidebar config)`, `src/content/docs/agent-platform/astro.config.mjs (sidebar config)`, `src/content/docs/guides/astro.config.mjs (sidebar config)`) to confirm the page is listed. Do NOT generate plausible-looking URLs to pages that don't exist.
- **Verify the target page exists.** Check `src/sidebar.ts` for sidebar entries and the corresponding file under `src/content/docs/` to confirm the page exists. Do NOT generate plausible-looking URLs to pages that don't exist.

Comment thread .agents/templates/guide-page.md Outdated
## Next steps

[2-3 sentence summary of what the reader accomplished. Then list links to related content. CROSS-LINKING: Always link to at least one other guide in the Guides section and one feature documentation page in the main docs. If this guide relates to features covered in the Coding Agents section (src/content/docs/coding-agents/), link there too. If a standalone summary section feels valuable, add a ## Recap heading above the summary paragraph.]
[2-3 sentence summary of what the reader accomplished. Then list links to related content. CROSS-LINKING: Always link to at least one other guide in the Guides section and one feature documentation page in the main docs. If this guide relates to features covered in the third-party agents section (src/content/docs/agent-platform/third-party-agents/), link there too. If a standalone summary section feels valuable, add a ## Recap heading above the summary paragraph.]
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [IMPORTANT] The third-party-agents directory does not exist; current Claude Code/Codex/OpenCode pages live under agent-platform/cli-agents, so drafts that follow this path will generate broken links.

Suggested change
[2-3 sentence summary of what the reader accomplished. Then list links to related content. CROSS-LINKING: Always link to at least one other guide in the Guides section and one feature documentation page in the main docs. If this guide relates to features covered in the third-party agents section (src/content/docs/agent-platform/third-party-agents/), link there too. If a standalone summary section feels valuable, add a ## Recap heading above the summary paragraph.]
[2-3 sentence summary of what the reader accomplished. Then list links to related content. CROSS-LINKING: Always link to at least one other guide in the Guides section and one feature documentation page in the main docs. If this guide relates to features covered in the Third-Party CLI Agents section (src/content/docs/agent-platform/cli-agents/), link there too. If a standalone summary section feels valuable, add a ## Recap heading above the summary paragraph.]

Co-Authored-By: Oz <oz-agent@warp.dev>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant