@rse/ase 0.0.62 → 0.9.1

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,27 +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
- /* forced-color chalk instance: stdout is a pipe under Claude Code,
8
- so chalk auto-detection would yield level 0; force level 1 to keep
9
- emitting ANSI sequences as the original implementation did */
10
- const c = new Chalk({ level: 1 });
11
- /* command-line handling */
12
- export default class HelloCommand {
13
- log;
14
- constructor(log) {
15
- this.log = log;
16
- }
17
- /* register commands */
18
- register(program) {
19
- program
20
- .command("hello")
21
- .description("Show a greeting message")
22
- .option("-s, --subject <subject>", "subject to greet", "Universe")
23
- .action(async (opts) => {
24
- process.stdout.write(c.red(`${opts.subject} World!`) + "\n");
25
- });
26
- }
27
- }
@@ -1,7 +0,0 @@
1
- {
2
- "permissions": {
3
- "allow": [
4
- "mcp__plugin_ase_ase__ase_diagram"
5
- ]
6
- }
7
- }