14 lines
355 B
Python
14 lines
355 B
Python
from __future__ import annotations
|
|
|
|
from enum import StrEnum
|
|
|
|
|
|
|
|
class Capability(StrEnum):
|
|
READ_REPOSITORY = "read_repository"
|
|
INVESTIGATE_WORKTREE = "investigate_worktree"
|
|
WRITE_WORKTREE = "write_worktree"
|
|
RUN_TESTS = "run_tests"
|
|
CREATE_BRANCH = "create_branch"
|
|
COMMIT_CHANGES = "commit_changes"
|
|
BROWSER_TEST = "browser_test"
|