Minimal concrete integration for testing.
| 4 | |
| 5 | |
| 6 | class StubIntegration(MarkdownIntegration): |
| 7 | """Minimal concrete integration for testing.""" |
| 8 | |
| 9 | key = "stub" |
| 10 | config = { |
| 11 | "name": "Stub Agent", |
| 12 | "folder": ".stub/", |
| 13 | "commands_subdir": "commands", |
| 14 | "install_url": None, |
| 15 | "requires_cli": False, |
| 16 | } |
| 17 | registrar_config = { |
| 18 | "dir": ".stub/commands", |
| 19 | "format": "markdown", |
| 20 | "args": "$ARGUMENTS", |
| 21 | "extension": ".md", |
| 22 | } |
no outgoing calls