@sunasteriskrnd/takumi 0.2.0 → 1.0.0-dev.2

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.
Files changed (3) hide show
  1. package/README.md +6 -0
  2. package/dist/index.js +14348 -1645
  3. package/package.json +3 -1
package/README.md CHANGED
@@ -33,12 +33,18 @@ Verify: `tkm --version`
33
33
 
34
34
  ```bash
35
35
  tkm --help # All commands
36
+ tkm auth login # One-time login (default install path)
36
37
  tkm new # Create new project (interactive)
37
38
  tkm new --kit engineer # Create with specific kit
38
39
  tkm init # Initialize/update in current project
39
40
  tkm init -g -y # Global install, non-interactive
40
41
  ```
41
42
 
43
+ The default `tkm init` / `new` / `versions` flows download releases
44
+ through the authenticated Takumi server (no `gh` CLI required). Run
45
+ `tkm auth login` once before the first install. The legacy GitHub
46
+ flow is still available via `--use-gh` for archived tags.
47
+
42
48
  ### Create New Project
43
49
 
44
50
  ```bash