@rse/ase 0.9.34 → 0.9.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dst/ase-hello.js DELETED
@@ -1,23 +0,0 @@
1
- /*
2
- ** Agentic Software Engineering (ASE)
3
- ** Copyright (c) 2025-2026 Dr. Ralf S. Engelschall <rse@engelschall.com>
4
- ** Licensed under GPL 3.0 <https://spdx.org/licenses/GPL-3.0-only>
5
- */
6
- import { Chalk } from "chalk";
7
- /* auto-detecting chalk instance: colors on a TTY and degrades cleanly
8
- on pipes/redirects (unlike ase-statusline.ts, which forces level 1
9
- because Claude Code pipes its stdout) */
10
- const c = new Chalk();
11
- /* CLI command "ase hello" */
12
- export default class HelloCommand {
13
- register(program) {
14
- program
15
- .command("hello")
16
- .description("Print a nice greeting to the terminal")
17
- .option("-s, --subject <subject>", "subject to greet", "World")
18
- .action((opts) => {
19
- process.stdout.write(c.blue(`Hello ${opts.subject}!`) + "\n");
20
- process.exit(0);
21
- });
22
- }
23
- }