activate
Initialize and configure the Task Trellis system for task management. Choose local mode for single-user workflows or remote mode for team collaboration. Validates parameters, sets up storage, and prepares the system for task operations.
Instructions
Activates the task trellis system in local or remote mode
Use this tool to initialize and configure the task trellis system for operation. Must be called before any other task management operations can be performed.
Activation modes:
'local': Uses local file system for task storage and management
'remote': Connects to remote task trellis service via API
Local mode requirements:
'projectRoot': Absolute path to project directory where tasks will be stored
Creates local .task-trellis directory for data persistence
Suitable for single-user development workflows
No network dependencies once activated
Remote mode requirements:
'apiToken': Authentication token for remote service access
'remoteProjectId': Unique identifier for remote project instance
'url': Service endpoint (optional, uses default if not specified)
Enables collaborative task management across distributed teams
Requires network connectivity for all operations
Activation process:
Validates mode-specific parameters and connectivity
Initializes data storage (local directory or remote connection)
Verifies authentication and permissions
Sets up task trellis schema and configuration
Prepares system for task creation and management
Error conditions:
Invalid projectRoot path (local mode)
Authentication failure (remote mode)
Network connectivity issues (remote mode)
Insufficient file system permissions (local mode)
Must be successfully completed before using any other task trellis tools. Re-activation with different parameters switches modes and resets system state.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiToken | No | API token (required for remote mode) | |
mode | Yes | Mode to activate (local or remote) | |
projectRoot | No | Project root path (required for local mode) | |
remoteProjectId | No | Remote project ID (required for remote mode) | |
url | No | URL for remote mode (optional, for non-standard URLs) |