@asc-agent/runtime 0.1.0 → 0.2.0

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/README.md CHANGED
@@ -7,7 +7,7 @@ proceed-by-default, escalation, audit, the external-write guard, host integratio
7
7
  here.
8
8
 
9
9
  ```bash
10
- npm install -g @asc-agent/runtime@0.1.0
10
+ npm install -g @asc-agent/runtime@0.2.0
11
11
  ```
12
12
 
13
13
  npm owns the executable link (on Windows, npm's own `asc.cmd`). This package never edits
@@ -19,4 +19,7 @@ network access. Only bootstrap, install and update do.
19
19
  On a machine with nothing installed yet, start from
20
20
  [`@asc-agent/bootstrap`](https://www.npmjs.com/package/@asc-agent/bootstrap) instead.
21
21
 
22
+ Driving this from a coding agent? The runbook is `AGENTS.md` in the
23
+ [repository](https://github.com/colosair/asc).
24
+
22
25
  See the [repository README](https://github.com/colosair/asc#readme).
package/dist/cli/asc.d.ts CHANGED
@@ -6,11 +6,4 @@
6
6
  * 설치하는 것은 말이 안 되고, 그것을 계획에 넣으면 매 setup이 npm을 부른다.
7
7
  */
8
8
  export type AscEntry = 'runtime' | 'bootstrap';
9
- /**
10
- * CLI 한 번의 실행. **다른 진입도 이 함수를 부른다** (C-14 불변식 ①).
11
- *
12
- * bootstrap 패키지는 아직 아무것도 설치되지 않은 machine에서 이것을 그대로 부른다 —
13
- * 진입이 둘이어도 판단은 하나다. 그래서 export이고, 그래서 아래 자동 실행은 이 파일이
14
- * 진짜 진입점일 때만 돈다.
15
- */
16
9
  export declare function runAscCommand(argv: string[], entry?: AscEntry): Promise<number>;