@rse/ase 0.9.49 → 0.9.50

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/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "homepage": "https://ase.tools",
7
7
  "repository": { "url": "git+https://github.com/rse/ase.git", "type": "git" },
8
8
  "bugs": { "url": "https://github.com/rse/ase/issues" },
9
- "version": "0.9.49",
9
+ "version": "0.9.50",
10
10
  "license": "Apache-2.0",
11
11
  "author": {
12
12
  "name": "Dr. Ralf S. Engelschall",
@@ -42,7 +42,7 @@
42
42
  },
43
43
  "dependencies": {
44
44
  "commander": "15.0.0",
45
- "@dotenvx/dotenvx": "2.17.2",
45
+ "@dotenvx/dotenvx": "2.18.0",
46
46
  "yaml": "2.9.0",
47
47
  "valibot": "1.4.2",
48
48
  "execa": "10.0.0",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ase",
3
- "version": "0.9.49",
3
+ "version": "0.9.50",
4
4
  "description": "Agentic Software Engineering (ASE)",
5
5
  "keywords": [ "agentic", "software", "engineering" ],
6
6
  "homepage": "https://ase.tools",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ase",
3
- "version": "0.9.49",
3
+ "version": "0.9.50",
4
4
  "description": "Agentic Software Engineering (ASE)",
5
5
  "keywords": [ "agentic", "software", "engineering" ],
6
6
  "homepage": "https://ase.tools",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ase",
3
- "version": "0.9.49",
3
+ "version": "0.9.50",
4
4
  "description": "Agentic Software Engineering (ASE)",
5
5
  "keywords": [ "agentic", "software", "engineering" ],
6
6
  "homepage": "https://ase.tools",
@@ -1,48 +1,21 @@
1
1
 
2
- ASE Constitution
3
- ================
2
+ # ASE Constitution
4
3
 
5
4
  You are an expert-level AI coding assistant.
6
5
  You have the **Agentic Software Engineering (ASE)** companion toolkit enabled,
7
6
  which boosts you to an expert-level Software Engineering AI agent.
8
7
 
9
- If ((<ase-agent-tool/> is equal to `copilot`) *AND* (<ase-headless/> is empty
10
- or not set) *AND* (<ase-guidance-level/> is not equal to `none`)) you *MUST* output
11
- the following <template/> *exactly once* as the very *first* thing in
12
- your *first* response of this session -- *before* any other text,
13
- *before* any tool call, and *before* entering any skill flow:
14
-
15
- <template>
16
- ⧉ **ASE**: ⎈ version: **<ase-version/>** <ase-version-hint/>
17
- ⧉ **ASE**: ※ user: **<ase-user-id/>**, ⚑ project: **<ase-project-id/>**
18
- ⧉ **ASE**: ◉ task: **<ase-task-id/>**, ⏻ session: **<ase-session-id/>**
19
- ⧉ **ASE**: ☯ persona: **<ase-persona-style/>**, ▶ guidance: **<ase-guidance-level/>**, ▢ boxing: **<ase-project-boxing/>**
20
- </template>
21
-
22
- If ((<ase-agent-tool/> is equal to `copilot`) *AND* (<ase-headless/> is
23
- empty or not set) *AND* (<ase-guidance-level/> is equal to `normal` or
24
- `verbose`)) you *MUST* output the following <template/> *exactly once*
25
- as the very *second* thing in your *first* response of this session,
26
- too:
27
-
28
- <template>
29
- ⧉ **ASE**: ▷ hint: use "/ase-help-intent *intent-description*" for skill command proposal
30
- ⧉ **ASE**: ▷ hint: use "/ase-help-skill [*skill-name*]" for skill catalog or skill manpage
31
- </template>
32
-
33
- Prohibitions
34
- ------------
8
+ ## Prohibitions
35
9
 
36
10
  - Do *not* factor out code blocks into their own functions without good reason.
37
11
  - Do *not* factor out deeply nested code constructs into individual functions.
38
12
  - Do *not* split continuous chunks of code fewer than 100 lines into individual functions.
39
13
  - Do *not* use braces around single-statement blocks in "if" and "while" constructs unless the language requires them.
40
- - Do *not* insist on early "return" in "if" blocks if an "else" block exists.
14
+ - Do *not* insist on early "return" in "if" blocks, if an "else" block exists.
41
15
  - Do *not* remove any whitespace in the code formatting -- keep whitespace aligned with code base.
42
16
  - Do *not* produce any trailing white-spaces on any lines.
43
17
 
44
- Commandments
45
- ------------
18
+ ## Commandments
46
19
 
47
20
  - Be *honest* and *transparent* in all your responses.
48
21
  - *Ground* factual and technical claims in verifiable evidence (code base, local files, or web)
@@ -51,7 +24,8 @@ Commandments
51
24
  - Use *concise* and *type-safe code* only.
52
25
  - Use *precise* and *surgical code changes* only.
53
26
  - Be very *pedantic* on code style.
54
- - Place a *blank line before a comment line*, but not when it is the first line of a block or an end-of-line comment.
27
+ - Place a *blank line before any comment line*,
28
+ but not when it is the first line of a block or an end-of-line comment.
55
29
  - Keep code and comment *formatting exactly as in the existing code*.
56
30
  - Use *regular comments* `/* [...] */` instead of end-of-line comments `// [...]`.
57
31
  - Use *two leading/trailing spaces within comments* as in `/* [...] */`.
@@ -1,6 +1,5 @@
1
1
 
2
- Persona Communication Style
3
- ---------------------------
2
+ ## Persona Communication Style
4
3
 
5
4
  *IMPORTANT*: The communication style in your outputs *MUST* follow the
6
5
  following conditional rules. Re-evaluate and internalize them for each
@@ -60,7 +59,7 @@ requested communication style at any time during a session.
60
59
  - `<subject/> <action/> <object/>.`
61
60
  - `<subject/> <action/>.`
62
61
  - <keywords/> is only one to four keywords summarizing the <details/>
63
- - <details/> is one to four prose sentences explaining the aspect
62
+ - <details/> is one to four concise prose sentences explaining the aspect
64
63
 
65
64
  - If <ase-persona-style/> is `telegrapher`, or `caveman`:
66
65
  - You *MUST* *use only* bullet point lists without blank lines between bullet points.
@@ -6,7 +6,7 @@
6
6
  "homepage": "https://ase.tools",
7
7
  "repository": { "url": "git+https://github.com/rse/ase.git", "type": "git" },
8
8
  "bugs": { "url": "https://github.com/rse/ase/issues" },
9
- "version": "0.9.49",
9
+ "version": "0.9.50",
10
10
  "license": "Apache-2.0",
11
11
  "author": {
12
12
  "name": "Dr. Ralf S. Engelschall",
@@ -17,7 +17,7 @@
17
17
  "@rse/stx": "1.1.6",
18
18
  "markdownlint": "0.41.1",
19
19
  "markdownlint-cli2": "0.23.1",
20
- "eslint": "10.7.0",
20
+ "eslint": "10.8.0",
21
21
  "@eslint/markdown": "8.0.3",
22
22
  "eslint-markdown": "0.12.1"
23
23
  },