The agents and status endpoints give you visibility into the health of Polysona’s five built-in agents and the overall state of your local installation. Agent status reports whether each agent’s Markdown definition file and corresponding skill file exist on disk. The system status endpoint surfaces counts and timestamps that summarize the current state of your persona and content data.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/LilMGenius/polysona/llms.txt
Use this file to discover all available pages before exploring further.
GET /api/agents/status
Returns the status of all five Polysona agents. For each agent, the response includes whether its agent definition file (agents/<name>.md) and skill file (under skills/) exist on disk. The status field is always "idle" in the current version — runtime execution state is not yet tracked by the API.
| Name | Description | Badge | Skill File Path |
|---|---|---|---|
profiler | Deep psychology interviewer | 10 frameworks | skills/interview/SKILL.md |
trendsetter | Trend detector | WebSearch | skills/trend/SKILL.md |
content-writer | Platform content generator | 5 platforms | skills/content/SKILL.md |
virtual-follower | QA simulator | context: fork | skills/qa/SKILL.md |
admin | Publisher and tracker | feedback loop | skills/publish/SKILL.md |
Array of agent status objects, one per agent, in the fixed order listed above.
GET /api/status
Returns a high-level summary of the Polysona installation: how many persona directories exist, how many content files are present across both pipeline stages, when any persona or content file was last modified, and the current Polysona version.Number of subdirectories found under
personas/. Each directory is counted as one persona regardless of which PLOON files it contains.Combined count of non-hidden files in
content/drafts/ and content/published/. Equivalent to drafts.length + published.length.ISO 8601 timestamp of the most recently modified file across all persona PLOON files (
persona.md, nuance.md, accounts.md) and all draft and published content files. Returns null if no files are found.The running Polysona version. Currently
"1.3.0".