@ait-co/console-cli 0.1.39 → 0.1.40
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.en.md +1 -31
- package/README.md +1 -31
- package/dist/cli.mjs +15 -559
- package/dist/cli.mjs.map +1 -1
- package/package.json +1 -1
package/README.en.md
CHANGED
|
@@ -182,36 +182,6 @@ Every command accepts `--json`. When set:
|
|
|
182
182
|
|
|
183
183
|
`agent-plugin` skills shell out with `--json` exclusively and parse stdout.
|
|
184
184
|
|
|
185
|
-
## Telemetry
|
|
186
|
-
|
|
187
|
-
`aitcc` collects anonymous usage statistics split into two tiers. See the [privacy page](https://docs.aitc.dev/privacy) for details.
|
|
188
|
-
|
|
189
|
-
### Tier 0 — anonymous daily ping (on by default, opt-out)
|
|
190
|
-
|
|
191
|
-
Once per day per machine, a minimal anonymous ping is sent on every invocation. Collected: `{source, version, platform}`. No PII, no `anon_id` — the server derives a daily hash from IP + User-Agent using a rotating salt, and stores nothing else. This is the minimum signal needed to know "is anyone actually using this version?"
|
|
192
|
-
|
|
193
|
-
Three ways to opt out:
|
|
194
|
-
|
|
195
|
-
- `AITCC_TELEMETRY=off` environment variable — disables all telemetry for this shell session
|
|
196
|
-
- `--no-telemetry` flag — disables for this single invocation only (not permanent)
|
|
197
|
-
- `aitcc telemetry tier0-off` — permanently opts out (persisted to the state file)
|
|
198
|
-
|
|
199
|
-
### Tier 1 — detailed events (off by default, opt-in)
|
|
200
|
-
|
|
201
|
-
On first run in a TTY, the CLI prompts for consent. In CI or pipe environments it silently defaults to deny. Collected: command name, version, platform, random persistent anonymous ID (`anon_id`). No personally identifiable information (email, session, user ID, etc.) is ever sent.
|
|
202
|
-
|
|
203
|
-
```sh
|
|
204
|
-
aitcc telemetry status # show both tier status + anon ID
|
|
205
|
-
aitcc telemetry status --json # machine-readable output
|
|
206
|
-
aitcc telemetry enable # enable Tier 1 events
|
|
207
|
-
aitcc telemetry disable # disable Tier 1 events
|
|
208
|
-
aitcc telemetry delete # request deletion of Tier 1 server data + rotate local anon ID
|
|
209
|
-
aitcc telemetry tier0-off # permanently opt out of Tier 0 daily ping
|
|
210
|
-
aitcc telemetry tier0-on # re-enable Tier 0 after a previous tier0-off
|
|
211
|
-
```
|
|
212
|
-
|
|
213
|
-
State file: `$XDG_CONFIG_HOME/aitcc/telemetry.json` (fallback `~/.config/aitcc/telemetry.json`, mode `0600`).
|
|
214
|
-
|
|
215
185
|
## Status
|
|
216
186
|
|
|
217
187
|
The following command groups are implemented end-to-end:
|
|
@@ -219,7 +189,7 @@ The following command groups are implemented end-to-end:
|
|
|
219
189
|
- Auth & session: `login` / `logout` / `whoami` / `auth` (export/import)
|
|
220
190
|
- Workspace: `workspace` / `members` / `me` / `notices`
|
|
221
191
|
- Mini-app: `app` — `init` / `ls` / `show` / `status` / `deploy` / `register` / `ratings` / `reports` / `metrics` / `events` / `messages` / `share-rewards`, `app bundles` (`ls`/`deployed`/`upload`/`review`/`release`/`test-push`/`test-links`), `app certs` (`ls`/`show`/`issue`/`revoke`)
|
|
222
|
-
- Misc: Deploy Key issuance (`keys`), `
|
|
192
|
+
- Misc: Deploy Key issuance (`keys`), `upgrade` (self-update), `completion` (shell completion)
|
|
223
193
|
|
|
224
194
|
`app logs` is deferred until the backend endpoint is available. See the [organization landing page](https://aitc.dev/) for the full roadmap.
|
|
225
195
|
|
package/README.md
CHANGED
|
@@ -182,36 +182,6 @@ aitcc app deploy ./aitc-sdk-example.ait --json
|
|
|
182
182
|
|
|
183
183
|
`agent-plugin` skill은 항상 `--json`으로 shell out하고 stdout을 파싱합니다.
|
|
184
184
|
|
|
185
|
-
## 텔레메트리
|
|
186
|
-
|
|
187
|
-
`aitcc`는 두 단계로 분리된 익명 사용 통계를 수집합니다. 자세한 내용은 [privacy 페이지](https://docs.aitc.dev/privacy) 참조.
|
|
188
|
-
|
|
189
|
-
### Tier 0 — 일별 익명 핑 (기본 ON, opt-out)
|
|
190
|
-
|
|
191
|
-
매 실행 시 하루 한 번 익명 핑을 보냅니다. 수집 항목: `{source, version, platform}`. 개인 식별 정보 없음. `anon_id`도 없음 — 서버가 일별 salt로 IP+UA 해시를 계산해 저장하며, 그 외 정보는 저장하지 않습니다. "이 버전을 실제로 쓰는 사람이 있는가"를 파악하기 위한 최소 신호입니다.
|
|
192
|
-
|
|
193
|
-
opt-out 방법 (세 가지):
|
|
194
|
-
|
|
195
|
-
- `AITCC_TELEMETRY=off` 환경 변수 — 이 쉘 세션 전체 비활성
|
|
196
|
-
- `--no-telemetry` 플래그 — 이 invocation만 비활성 (영구 X)
|
|
197
|
-
- `aitcc telemetry tier0-off` — 영구 opt-out (state file에 저장)
|
|
198
|
-
|
|
199
|
-
### Tier 1 — 세부 이벤트 (기본 OFF, opt-in)
|
|
200
|
-
|
|
201
|
-
처음 실행 시 TTY 환경에서만 동의를 묻습니다. CI/파이프 환경에선 자동으로 비활성화됩니다. 수집 항목: 실행된 명령 이름, 버전, 플랫폼, 임의 익명 ID (`anon_id`). 개인 식별 정보(이메일, 세션, 사용자 ID 등)는 절대 전송하지 않습니다.
|
|
202
|
-
|
|
203
|
-
```sh
|
|
204
|
-
aitcc telemetry status # 두 tier 상태 + 익명 ID 확인
|
|
205
|
-
aitcc telemetry status --json # machine-readable 출력
|
|
206
|
-
aitcc telemetry enable # Tier 1 활성화
|
|
207
|
-
aitcc telemetry disable # Tier 1 비활성화
|
|
208
|
-
aitcc telemetry delete # 서버에 저장된 Tier 1 데이터 삭제 요청 + 로컬 익명 ID 교체
|
|
209
|
-
aitcc telemetry tier0-off # Tier 0 익명 핑 영구 비활성화
|
|
210
|
-
aitcc telemetry tier0-on # Tier 0 다시 활성화
|
|
211
|
-
```
|
|
212
|
-
|
|
213
|
-
상태 파일: `$XDG_CONFIG_HOME/aitcc/telemetry.json` (fallback `~/.config/aitcc/telemetry.json`, mode `0600`).
|
|
214
|
-
|
|
215
185
|
## 진행 상황
|
|
216
186
|
|
|
217
187
|
다음 명령군이 end-to-end로 동작합니다:
|
|
@@ -219,7 +189,7 @@ aitcc telemetry tier0-on # Tier 0 다시 활성화
|
|
|
219
189
|
- 인증·세션: `login` / `logout` / `whoami` / `auth` (export/import)
|
|
220
190
|
- 워크스페이스: `workspace` / `members` / `me` / `notices`
|
|
221
191
|
- 미니앱: `app` — `init` / `ls` / `show` / `status` / `deploy` / `register` / `ratings` / `reports` / `metrics` / `events` / `messages` / `share-rewards`, `app bundles` (`ls`/`deployed`/`upload`/`review`/`release`/`test-push`/`test-links`), `app certs` (`ls`/`show`/`issue`/`revoke`)
|
|
222
|
-
- 그 외: Deploy Key 발급(`keys`), `
|
|
192
|
+
- 그 외: Deploy Key 발급(`keys`), `upgrade`(self-update), `completion`(셸 자동완성)
|
|
223
193
|
|
|
224
194
|
`app logs`는 백엔드 endpoint 확보 후 구현 예정입니다. 전체 로드맵은 [organization landing page](https://aitc.dev/) 참조.
|
|
225
195
|
|