Add pkg/agentic for AI-assisted task management: - API client for core-agentic service - Task listing, claiming, updating, completion - Config from .env or ~/.core/agentic.yaml CLI commands: - core dev tasks - list available tasks - core dev task <id> - show/claim task - core dev task --auto - AI picks highest priority - core dev task:update <id> - update progress - core dev task:complete <id> - mark complete Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
278 B
Modula-2
14 lines
278 B
Modula-2
module github.com/host-uk/core/pkg/agentic
|
|
|
|
go 1.25
|
|
|
|
require (
|
|
github.com/host-uk/core/pkg/core v0.0.0
|
|
github.com/stretchr/testify v1.11.1
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
)
|