@rizom/brain 0.1.1-alpha.8 → 0.2.0-alpha.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
@@ -19,7 +19,7 @@ echo "AI_API_KEY=your-key-here" > .env
19
19
  brain start
20
20
  ```
21
21
 
22
- If you plan to deploy behind Kamal with Cloudflare Origin CA TLS, scaffold with `brain init mybrain --deploy`, then run `brain cert:bootstrap` once and store the resulting cert/key as secrets before deploying.
22
+ If you plan to deploy behind Kamal with Cloudflare Origin CA TLS, scaffold with `brain init mybrain --deploy`, then run `brain secrets:push --push-to 1password` for the env-backed secrets (or `--dry-run` to preview them with required-vs-optional grouping) and `brain cert:bootstrap --push-to 1password` for the TLS cert before deploying. When working locally with 1Password, export `OP_SERVICE_ACCOUNT_TOKEN`; the GitHub Actions secret name stays `OP_TOKEN`.
23
23
 
24
24
  `brain init` generates a 1Password-backed varlock schema by default. Pass `--backend` if you need a different secret backend plugin.
25
25
 
@@ -33,20 +33,21 @@ A brain is a personal AI agent with persistent memory, tools, and integrations.
33
33
 
34
34
  ## Commands
35
35
 
36
- | Command | Description |
37
- | ----------------------- | ---------------------------------------- |
38
- | `brain init <dir>` | Scaffold a new brain instance |
39
- | `brain cert:bootstrap` | Issue a Cloudflare Origin CA certificate |
40
- | `brain start` | Start the brain server |
41
- | `brain chat` | Start in interactive chat mode |
42
- | `brain list <type>` | List entities (posts, notes, etc.) |
43
- | `brain get <type> <id>` | Get a specific entity |
44
- | `brain search <query>` | Search across all content |
45
- | `brain sync` | Sync content from connected sources |
46
- | `brain build` | Build the static site |
47
- | `brain status` | Show brain status |
48
- | `brain eval` | Run evaluation suite |
49
- | `brain pin` | Pin @rizom/brain version (local install) |
36
+ | Command | Description |
37
+ | ----------------------- | ------------------------------------------ |
38
+ | `brain init <dir>` | Scaffold a new brain instance |
39
+ | `brain cert:bootstrap` | Issue a Cloudflare Origin CA certificate |
40
+ | `brain secrets:push` | Push local env-backed secrets to a backend |
41
+ | `brain start` | Start the brain server |
42
+ | `brain chat` | Start in interactive chat mode |
43
+ | `brain list <type>` | List entities (posts, notes, etc.) |
44
+ | `brain get <type> <id>` | Get a specific entity |
45
+ | `brain search <query>` | Search across all content |
46
+ | `brain sync` | Sync content from connected sources |
47
+ | `brain build` | Build the static site |
48
+ | `brain status` | Show brain status |
49
+ | `brain eval` | Run evaluation suite |
50
+ | `brain pin` | Pin @rizom/brain version (local install) |
50
51
 
51
52
  ### Remote Mode
52
53