Documentation Index
Fetch the complete documentation index at: https://gpars.io/llms.txt
Use this file to discover all available pages before exploring further.
Minimal manifest
The smallest valid GPARS manifest. Declares an agent identity and an empty list of intended capabilities.
{
"id": "org:example/agent:minimal-v1",
"capabilities": []
}
Coding assistant
A coding agent that can assist with workspace files, command execution, version-control workflows, and browser-based verification.
{
"id": "org:example/agent:coding-assistant-v1",
"version": "0.1.0",
"capabilities": [
{
"id": "files_editing",
"description": "Can inspect and modify files in a project workspace."
},
{
"id": "command_execution",
"description": "Can run local commands for builds, tests, and development tasks."
},
{
"id": "version_control",
"description": "Can inspect repository state and prepare local commits."
},
{
"id": "browser_assistance",
"description": "Can use browser-based workflows for development and verification."
}
]
}
Research assistant
A research agent that can navigate web sources, organize research outputs, and use external storage for caching. Includes extension metadata for research-specific configuration.
{
"id": "org:example/agent:research-assistant-v1",
"version": "0.1.0",
"capabilities": [
{
"id": "web_research",
"description": "Can navigate web sources and read retrieved research material."
},
{
"id": "research_storage",
"description": "Can organize notes, citations, and intermediate research outputs."
},
{
"id": "result_caching",
"description": "Can use external storage to cache retrieved research results."
}
],
"extensions": {
"org.example.research": {
"max_search_depth": 3,
"preferred_sources": ["arxiv", "scholar"]
}
}
}