2026-07-04 22:53:10 +00:00
|
|
|
{
|
|
|
|
|
"site": {
|
2026-07-04 23:06:23 +00:00
|
|
|
"url": "https://example.com",
|
|
|
|
|
"name": "SeedProject Site",
|
|
|
|
|
"topic": "your subject area",
|
|
|
|
|
"audience": "your target audience",
|
2026-07-04 22:53:10 +00:00
|
|
|
"language": "en"
|
|
|
|
|
},
|
|
|
|
|
"paths": {
|
2026-07-04 23:34:58 +00:00
|
|
|
"projectRoot": "/www/wwwroot/seedproject-web",
|
2026-07-04 22:53:10 +00:00
|
|
|
"appDir": "app",
|
|
|
|
|
"blogContentDir": "app/src/content/blog",
|
|
|
|
|
"blogDataFile": "app/src/lib/blog-data.js",
|
feat: content-pipeline/ → agents/ — formalize the agent system in the seed
Adopt the agents/ architecture proven on medellin.co (reference impl):
- Move the content engine to a top-level agents/ dir: orchestrators, prompts,
config, run.sh, admin console, shared libs. All content-pipeline literals
repointed (config paths, scripts, admin, LLM-facing prompts/image.md string,
configure.mjs, new-site.sh, astroagent tokenFile, .gitignore runtime block).
- Every script carries a parseable @agent-manifest header: name, title, class
(content|operational|runtime|plumbing), trigger, model, prompts, skills (MCP),
tools, reads/writes tables. 5 content agents + 3 plumbing scripts.
- New agents/catalog.mjs generates the catalog from the headers:
agents/AGENTS.md (human, grouped by class) + agents/agents.json (machine
manifest — a clone diffs it against a source to find missing tools/tables/MCP
before running). configure.mjs regenerates the catalog on every identity
stamp. No DB table, no watcher.
- config.json gains paths.stateDir/newsDir; publish-tick, write-daily, and
news-radar read them instead of hardcoding.
- Full cut: content-pipeline/ deleted (the seed has no live crons, so no
hybrid period needed). Docs updated (AGENTS.md structure + pipeline section,
README paths).
Clones migrating from content-pipeline/: see medellin.co's
.memory/handoffs/agents-directory-migration.md for the cutover playbook
(one cron set active at a time; migrate drafts/state after repointing cron).
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01FMQeUnUrAeexcZ7P2Hxa6G
2026-07-11 20:33:48 +00:00
|
|
|
"calendar": "agents/calendar.json",
|
|
|
|
|
"draftsDir": "agents/drafts",
|
|
|
|
|
"logsDir": "agents/logs",
|
|
|
|
|
"stateDir": "agents/state",
|
|
|
|
|
"newsDir": "agents"
|
2026-07-04 22:53:10 +00:00
|
|
|
},
|
|
|
|
|
"models": {
|
|
|
|
|
"research": "claude-opus-4-8",
|
|
|
|
|
"writer": "claude-sonnet-4-6",
|
|
|
|
|
"reviewer": "claude-opus-4-8"
|
|
|
|
|
},
|
|
|
|
|
"seo": {
|
|
|
|
|
"minScore": 85,
|
|
|
|
|
"blockApproveOnFail": true,
|
|
|
|
|
"autoRevise": true,
|
|
|
|
|
"maxReviseAttempts": 3
|
|
|
|
|
},
|
|
|
|
|
"publish": {
|
|
|
|
|
"auto": true,
|
|
|
|
|
"notBefore": "07:00"
|
|
|
|
|
},
|
|
|
|
|
"news": {
|
|
|
|
|
"enabled": true,
|
|
|
|
|
"recencyDays": 5,
|
|
|
|
|
"maxPerScan": 8
|
|
|
|
|
},
|
|
|
|
|
"author": {
|
2026-07-04 23:06:23 +00:00
|
|
|
"slug": "site-author",
|
|
|
|
|
"name": "Site Author"
|
2026-07-04 22:53:10 +00:00
|
|
|
},
|
|
|
|
|
"image": {
|
|
|
|
|
"provider": "higgsfield",
|
|
|
|
|
"preferredModel": "soul_2",
|
|
|
|
|
"aspectRatio": "3:2",
|
|
|
|
|
"outputFormat": "jpg",
|
|
|
|
|
"credit": {
|
|
|
|
|
"caption": "Illustrative cover image. Not a photograph of any specific establishment.",
|
2026-07-04 23:06:23 +00:00
|
|
|
"author": "SeedProject Site"
|
2026-07-04 22:53:10 +00:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"editorial": {
|
|
|
|
|
"calendarDays": 90,
|
|
|
|
|
"refillThreshold": 7,
|
|
|
|
|
"refillCount": 14,
|
2026-07-04 23:06:23 +00:00
|
|
|
"timezone": "America/New_York",
|
2026-07-04 22:53:10 +00:00
|
|
|
"contentMix": {
|
2026-07-04 23:06:23 +00:00
|
|
|
"guide": 0.3,
|
2026-07-04 22:53:10 +00:00
|
|
|
"list": 0.25,
|
2026-07-04 23:06:23 +00:00
|
|
|
"news-roundup": 0.2,
|
2026-07-04 22:53:10 +00:00
|
|
|
"trend": 0.15,
|
2026-07-04 23:06:23 +00:00
|
|
|
"review-summary": 0.1
|
2026-07-04 22:53:10 +00:00
|
|
|
},
|
|
|
|
|
"wordCounts": {
|
2026-07-04 23:06:23 +00:00
|
|
|
"news-roundup": [
|
|
|
|
|
600,
|
|
|
|
|
900
|
|
|
|
|
],
|
|
|
|
|
"trend": [
|
|
|
|
|
800,
|
|
|
|
|
1200
|
|
|
|
|
],
|
|
|
|
|
"review-summary": [
|
|
|
|
|
900,
|
|
|
|
|
1300
|
|
|
|
|
],
|
|
|
|
|
"list": [
|
|
|
|
|
1000,
|
|
|
|
|
1500
|
|
|
|
|
],
|
|
|
|
|
"guide": [
|
|
|
|
|
1200,
|
|
|
|
|
1800
|
|
|
|
|
]
|
2026-07-04 22:53:10 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|