Create autonomous agent workflows with goal decomposition and task orchestration.
GoA (Goal-oriented Agents) is Vigthoria's autonomous agent system. Unlike simple chat, GoA agents can:
GoA Workflow Example
Access GoA from Vigthoria Operator or Coder:
Goal: Research and summarize the top 5 JavaScript frameworks for 2026, comparing their performance, community size, and learning curve. Create a markdown report with recommendations.
GoA will automatically:
GoA agents can use various tools. Enable the ones you need:
// Workflow configuration example
{
"goal": "Analyze our codebase for security vulnerabilities",
"tools": ["file_read", "code_analysis", "report_generation"],
"constraints": {
"maxSteps": 50,
"timeout": "10m",
"confirmDestructive": true
}
}
Watch your workflow execute in real-time:
You can pause a workflow at any time, provide additional guidance, and resume. This is useful when the agent needs clarification or is heading in the wrong direction.
// Good goal definition with success criteria Goal: Generate unit tests for the UserService class Success Criteria: - All public methods have at least one test - Edge cases for null inputs are covered - Tests achieve 80%+ code coverage - Tests follow Jest best practices
Try these workflow templates: