refactor: replace Taskfile with bash CLI script

- Add shannon bash script with start/logs/query/stop/help commands
- Remove Taskfile.yml dependency (no longer requires Task installation)
- Update README.md and CLAUDE.md to use ./shannon commands
- Update client.ts output to show ./shannon commands
This commit is contained in:
ajmallesh
2026-01-12 17:42:06 -08:00
parent 1f303b02b8
commit 89cc30bb94
5 changed files with 177 additions and 122 deletions
+2 -2
View File
@@ -163,8 +163,8 @@ async function startPipeline(): Promise<void> {
if (!waitForCompletion) {
console.log(chalk.bold('Monitor progress:'));
console.log(chalk.white(' Web UI: ') + chalk.blue(`http://localhost:8233/namespaces/default/workflows/${workflowId}`));
console.log(chalk.white(' Logs: ') + chalk.gray('task logs'));
console.log(chalk.white(' Query: ') + chalk.gray(`task query ID=${workflowId}`));
console.log(chalk.white(' Logs: ') + chalk.gray('./shannon logs'));
console.log(chalk.white(' Query: ') + chalk.gray(`./shannon query ID=${workflowId}`));
console.log();
return;
}