Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type ContextInput ¶
type ContextInput struct {
TaskDir string `json:"task_dir,omitempty" jsonschema:"task directory to scan, defaults to current directory"`
TaskID string `json:"task_id" jsonschema:"required,task ID to resolve context for"`
Scopes map[string][]string `json:"scopes,omitempty" jsonschema:"scope definitions mapping scope names to file paths"`
ProjectRoot string `json:"project_root,omitempty" jsonschema:"project root directory for resolving file paths"`
Resolve bool `json:"resolve,omitempty" jsonschema:"expand directory paths to individual files"`
IncludeContent bool `json:"include_content,omitempty" jsonschema:"inline file contents and task body"`
MaxFiles int `json:"max_files,omitempty" jsonschema:"cap number of files returned, 0 for unlimited"`
}
ContextInput defines the input schema for the context tool.
type GetInput ¶
type GetInput struct {
TaskDir string `json:"task_dir,omitempty" jsonschema:"task directory to scan, defaults to current directory"`
TaskID string `json:"task_id" jsonschema:"required,task ID to retrieve"`
}
GetInput defines the input schema for the get tool.
type GraphInput ¶
type GraphInput struct {
TaskDir string `json:"task_dir,omitempty" jsonschema:"task directory to scan, defaults to current directory"`
RootTaskID string `json:"root_task_id,omitempty" jsonschema:"focus on a specific task and its dependencies/dependents"`
ExcludeStatus []string `json:"exclude_status,omitempty" jsonschema:"exclude tasks with these statuses"`
Filters []string `json:"filters,omitempty" jsonschema:"filter expressions, e.g. status=pending, priority=high"`
}
GraphInput defines the input schema for the graph tool.
type ListInput ¶
type ListInput struct {
TaskDir string `json:"task_dir,omitempty" jsonschema:"task directory to scan, defaults to current directory"`
Filters []string `json:"filters,omitempty" jsonschema:"filter expressions, e.g. status=pending, priority=high"`
Sort string `json:"sort,omitempty" jsonschema:"sort field: id, title, status, priority, effort, created"`
}
ListInput defines the input schema for the list tool.
type NextInput ¶
type NextInput struct {
TaskDir string `json:"task_dir,omitempty" jsonschema:"task directory to scan, defaults to current directory"`
Limit int `json:"limit,omitempty" jsonschema:"max number of recommendations to return, defaults to 5"`
Filters []string `json:"filters,omitempty" jsonschema:"filter expressions, e.g. priority=high, tag=mvp"`
QuickWins bool `json:"quick_wins,omitempty" jsonschema:"only show small-effort tasks"`
Critical bool `json:"critical,omitempty" jsonschema:"only show tasks on the critical path"`
}
NextInput defines the input schema for the next tool.
type SearchInput ¶
type SearchInput struct {
TaskDir string `json:"task_dir,omitempty" jsonschema:"task directory to scan, defaults to current directory"`
Query string `json:"query" jsonschema:"required,search query for full-text search across task titles and bodies"`
}
SearchInput defines the input schema for the search tool.
type SetInput ¶
type SetInput struct {
TaskDir string `json:"task_dir,omitempty" jsonschema:"task directory to scan, defaults to current directory"`
TaskID string `json:"task_id" jsonschema:"required,task ID to update"`
Status string `json:"status,omitempty" jsonschema:"new status: pending, in-progress, completed, in-review, blocked, cancelled"`
Priority string `json:"priority,omitempty" jsonschema:"new priority: low, medium, high, critical"`
Effort string `json:"effort,omitempty" jsonschema:"new effort: small, medium, large"`
Owner string `json:"owner,omitempty" jsonschema:"new owner/assignee"`
Tags []string `json:"tags,omitempty" jsonschema:"replace all tags with this list"`
AddTags []string `json:"add_tags,omitempty" jsonschema:"tags to add to existing tags"`
RemTags []string `json:"rem_tags,omitempty" jsonschema:"tags to remove from existing tags"`
AddPRs []string `json:"add_prs,omitempty" jsonschema:"PR URLs to add"`
RemPRs []string `json:"rem_prs,omitempty" jsonschema:"PR URLs to remove"`
}
SetInput defines the input schema for the set tool.
type StatusInput ¶
type StatusInput struct {
TaskDir string `json:"task_dir,omitempty" jsonschema:"task directory to scan, defaults to current directory"`
TaskID string `json:"task_id" jsonschema:"required,task ID to retrieve"`
}
StatusInput defines the input schema for the status tool.
type ValidateInput ¶
type ValidateInput struct {
TaskDir string `json:"task_dir,omitempty" jsonschema:"task directory to scan, defaults to current directory"`
Strict bool `json:"strict,omitempty" jsonschema:"enable strict mode for additional warnings"`
}
ValidateInput defines the input schema for the validate tool.
Click to show internal directories.
Click to hide internal directories.