Skip to main content
This is the default path for coding agents.

1. Load context

aeo agent context
aeo strategy show
aeo visibility show
aeo metrics overview
If the task depends on a specific source, read it lazily:
aeo drive list
aeo drive read <file_id>

2. Draft locally

Write the article in your own workspace. Use the same dashboard-visible context that Aeolo uses for the brand.

3. Import

aeo content import \
  --title "..." \
  --body-file ./draft.md
The imported draft is created in review state. Use aeo content update <id> --status draft|review|approved only when the user wants that lifecycle state changed.

4. Review

aeo content review <content_id>
The review step should produce concrete fixes. Apply only the fixes that improve the article.

5. Update and preview

aeo content update <content_id> --body-file ./draft.final.md
aeo content preview <content_id>
content preview creates or reuses a public, unauthenticated preview URL. Generate one only when the draft can be shared outside the authenticated workspace.

6. Deploy

aeo content deploy <content_id>
Deploy only after the user approves the final draft and destination. The content must be approved first:
aeo content update <content_id> --status approved
aeo content deploy <content_id>