feat: project init with config package and root command

Go module, cobra root command, config resolution (CTASK_ROOT, CTASK_AGENT, EnvVars) with tests.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-05 18:28:24 -04:00
commit ab56ddfff0
7 changed files with 192 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
package main
import (
"os"
"github.com/warrenronsiek/ctask/cmd"
)
func main() {
if err := cmd.Execute(); err != nil {
os.Exit(1)
}
}