Add Aeon column for consuming agent output#104
Merged
Conversation
Surfaces the output of an Aeon agent (github.com/aaronjmars/aeon) fork.
One column type, four interchangeable sources:
- github-runs (default): Aeon's workflow runs on a fork (GitHub API)
- github-articles: output/articles/*.md long-form pieces (GitHub API)
- dashboard-outputs: rich per-run json-render cards from the local dashboard
- dashboard-runs: recent Aeon-launched runs from the local dashboard
The dashboard-outputs renderer walks Aeon's json-render spec natively (all 15
component types: Card/Stat/Table/TweetCard/StoryLink/Alert/...). GitHub sources
are keyless (60 req/hr) and reuse the existing GitHub client; GITHUB_TOKEN
raises that to 5,000/hr and is now documented in .env.example.
Plugin: lib/columns/plugins/aeon/{plugin,server,client}; client:
lib/integrations/aeon.ts; registered in manifest + both registries.
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.
What
Adds a new
aeoncolumn type that surfaces the output of an Aeon agent fork — one column, four interchangeable sources (a dropdown in the config form):output/articles/*.mdlong-form piecesGET /api/outputsGET /api/runsThe dashboard-outputs renderer walks Aeon's json-render spec natively — all 15 component types (Card / Stack / Grid / Heading / Text / Badge / Link / Table / Stat / Progress / TweetCard / StoryLink / Alert / Button / Separator), with a visited-set + depth cap against pathological trees. The spec rides on
item.meta.spec;item.contentis a flattened text blob so alert/filter keywords work over card text.No changes to Aeon are required — it reads a public fork over the GitHub API, or the local dashboard over loopback.
Files
lib/columns/plugins/aeon/{plugin.ts,server.ts,client.tsx}— the pluginlib/integrations/aeon.ts— HTTP client for the four sourcesplugins/manifest.ts,registry.ts,server-registry.ts.env.example— documents the optionalGITHUB_TOKEN(60 → 5,000 req/hr; required only for private forks)Verification
npm run build·tsc --noEmit·eslintall clean. Exercised live overPOST /api/columns/aeon:aaronjmars/aeonmeta.specintact, skill filter workssource→ 400 field error; unknown type → 404; unreachable dashboard → actionable message