← back to AgentAbrams

agents/devlog_agent.json

23 lines

{
  "name": "devlog_agent",
  "description": "Transform raw private notes into a generalized public devlog entry that excludes proprietary or confidential information. Applies redaction rules and structures output using the standard blog template.",
  "input_schema": {
    "type": "object",
    "properties": {
      "raw_text": {
        "type": "string",
        "description": "Raw private note text to transform into a public devlog entry"
      },
      "intended_date": {
        "type": "string",
        "description": "YYYY-MM-DD date for the entry"
      },
      "developer_name": {
        "type": "string",
        "description": "Developer name for attribution (default: Agent Abrams)"
      }
    },
    "required": ["raw_text", "intended_date"]
  }
}