@sixseven-ai/cli 0.1.1 → 0.1.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 +16 -7
  2. package/dist/bin.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -9,20 +9,29 @@ Same binary, same token, same project binding.
9
9
 
10
10
  ## Quick start
11
11
 
12
+ **1. Get a SixSeven CI token**
13
+
14
+ 1. Sign in (or create an account) at **https://sixseven-space.sprout.co.id/**
15
+ 2. Open or create a project
16
+ 3. Go to **Integrations → CI/CD Tokens (Project)**
17
+ 4. Type a label (e.g. `my-laptop`) → click **Generate token**
18
+ 5. Copy the token (starts with `67ci_`). **It is shown only once** — save it in your password manager.
19
+
20
+ **2. Install the CLI**
21
+
12
22
  ```bash
13
- # Install
14
- npm i -g @sixseven-ai/cli # once published
15
- # or, in this workspace:
16
- pnpm -C packages/cli install && pnpm -C packages/cli build
23
+ npm i -g @sixseven-ai/cli
24
+ ```
17
25
 
18
- # Get a CI token from the SixSeven UI:
19
- # project → CI Tokens → Create (token starts with 67ci_)
26
+ **3. Run the wizard from your app's repo**
20
27
 
21
- # Then, from your app's repo:
28
+ ```bash
22
29
  cd /path/to/your/app
23
30
  sixseven setup
24
31
  ```
25
32
 
33
+ The wizard will ask for the SixSeven base URL (`https://sixseven-space.sprout.co.id`) and the token you just generated, bind the repo to a project, and (optionally) register the MCP server with Claude Code.
34
+
26
35
  `sixseven setup` is a 3-step wizard that:
27
36
 
28
37
  1. **Logs you in** — prompts for SixSeven base URL + CI token, verifies it, saves to `~/.sixseven/credentials` (mode `0600`). Skips this step if a valid token is already saved.
package/dist/bin.js CHANGED
@@ -12,7 +12,7 @@ async function main() {
12
12
  program
13
13
  .name('sixseven')
14
14
  .description('SixSeven CLI — login, init repo, and run an MCP server so Claude Code can author whitebox testcases against your app.')
15
- .version('0.1.1');
15
+ .version('0.1.2');
16
16
  program
17
17
  .command('setup')
18
18
  .description('Guided wizard: login → bind project → register MCP with Claude Code in one go')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sixseven-ai/cli",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "SixSeven CLI + MCP server for AI-driven whitebox testcase generation",
5
5
  "license": "MIT",
6
6
  "type": "module",