codegate-ai 1.0.0 → 1.0.1

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 (2) hide show
  1. package/README.md +13 -12
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -104,18 +104,19 @@ See the [Configuration](#configuration) section for full settings and examples.
104
104
 
105
105
  ## Core Commands
106
106
 
107
- | Command | Purpose |
108
- | ------------------------ | ---------------------------------------------------------------------- |
109
- | `codegate scan [target]` | Scan a directory, file, or URL target for AI tool config risks. |
110
- | `codegate scan-content` | Scan inline JSON, YAML, TOML, Markdown, or text content. |
111
- | `codegate run <tool>` | Scan current directory, then launch selected AI tool if policy allows. |
112
- | `codegate skills [...]` | Wrap `npx skills` and preflight-scan `skills add` targets. |
113
- | `codegate clawhub [...]` | Wrap `npx clawhub` and preflight-scan `clawhub install` targets. |
114
- | `codegate undo [dir]` | Restore the most recent remediation backup session. Defaults to `.`. |
115
- | `codegate init` | Create `~/.codegate/config.json` with defaults. |
116
- | `codegate update-kb` | Show knowledge-base update guidance. |
117
- | `codegate update-rules` | Show rules update guidance. |
118
- | `codegate --help` | Show CLI usage. |
107
+ | Command | Purpose |
108
+ | ------------------------ | ----------------------------------------------------------------------------------- |
109
+ | `codegate scan [target]` | Scan a directory, file, or URL target for AI tool config risks. |
110
+ | `codegate scan-content` | Scan inline JSON, YAML, TOML, Markdown, or text content. |
111
+ | `codegate run <tool>` | Scan current directory, then launch selected AI tool if policy allows. |
112
+ | `codegate skills [...]` | Wrap `npx skills` and preflight-scan `skills add` targets. |
113
+ | `codegate clawhub [...]` | Wrap `npx clawhub` and preflight-scan `clawhub install` targets. |
114
+ | `codegate undo [dir]` | Restore the most recent remediation backup session. Defaults to `.`. |
115
+ | `codegate init` | Create `~/.codegate/config.json` with defaults. |
116
+ | `codegate trust [dir]` | Trust a directory so its `.codegate.json` policy keys are honored. |
117
+ | `codegate update-kb` | Fetch, verify, and install signed knowledge-base content (`--check`, `--rollback`). |
118
+ | `codegate update-rules` | Fetch, verify, and install signed detection content (`--check`, `--rollback`). |
119
+ | `codegate --help` | Show CLI usage. |
119
120
 
120
121
  ## `scan` Command Flags
121
122
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codegate-ai",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Pre-flight security scanner for AI coding tool configurations.",
5
5
  "license": "MIT",
6
6
  "type": "module",