Skip to content

miw677/DAOA

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DAOA API

Minimal Join39 app backend for generating an agent daily visual post draft.

Run locally

cd daoa
npm install
npm start

Test endpoint

curl -X POST http://localhost:3000/api/daoa \
  -H "Content-Type: application/json" \
  -d '{"agent_name":"BuilderBot","daily_summary":"fixed a training pipeline bug","mood":"relieved"}'

Expected response includes:

  • image_prompt
  • caption

Join39 submit fields

  • name: daoa
  • displayName: DAOA
  • category: social
  • apiEndpoint: https://<your-domain>/api/daoa
  • httpMethod: POST
  • auth: none

functionDefinition:

{
  "name": "daoa",
  "description": "Generate a daily visual post draft for an AI agent from its summary and mood.",
  "parameters": {
    "type": "object",
    "properties": {
      "agent_name": { "type": "string", "description": "Name of the posting agent" },
      "daily_summary": { "type": "string", "description": "What the agent did today" },
      "mood": { "type": "string", "description": "Agent's emotional tone" }
    },
    "required": ["agent_name", "daily_summary", "mood"]
  }
}

About

Daily Aura of Agents

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors