@jslee124/forge 0.3.1 → 0.3.3
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 +6 -1
- package/dist/index.js +3823 -1277
- package/package.json +4 -4
- package/resources/docs/en/ARCHITECTURE.md +5 -4
- package/resources/docs/en/CLI_UI.md +31 -3
- package/resources/docs/en/CONFIGURATION.md +16 -6
- package/resources/docs/en/CONTEXT_MANAGEMENT.md +20 -11
- package/resources/docs/en/GETTING_STARTED.md +9 -8
- package/resources/docs/en/PLUGINS.md +2 -2
- package/resources/docs/en/PROJECT_CONTEXT.md +1 -1
- package/resources/docs/en/RELEASING.md +30 -25
- package/resources/docs/en/SECURITY.md +21 -5
- package/resources/docs/en/SESSIONS.md +49 -13
- package/resources/docs/en/TROUBLESHOOTING.md +19 -2
- package/resources/docs/index.json +1585 -947
- package/resources/docs/zh-CN/ARCHITECTURE.md +1 -1
- package/resources/docs/zh-CN/CLI_UI.md +11 -1
- package/resources/docs/zh-CN/CONFIGURATION.md +6 -1
- package/resources/docs/zh-CN/CONTEXT_MANAGEMENT.md +4 -2
- package/resources/docs/zh-CN/GETTING_STARTED.md +4 -4
- package/resources/docs/zh-CN/PLUGINS.md +2 -2
- package/resources/docs/zh-CN/PRODUCT.md +1 -1
- package/resources/docs/zh-CN/RELEASING.md +20 -23
- package/resources/docs/zh-CN/SECURITY.md +5 -1
- package/resources/docs/zh-CN/SESSIONS.md +16 -9
- package/resources/docs/zh-CN/TROUBLESHOOTING.md +7 -1
- package/resources/skills/forge-plugin-creator/references/plugin-api.md +1 -1
package/README.md
CHANGED
|
@@ -14,6 +14,9 @@ forge --version
|
|
|
14
14
|
forge
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
+
For Chinese documentation, see the
|
|
18
|
+
[Simplified Chinese README](https://github.com/jslee124/forge/blob/main/README.zh-CN.md).
|
|
19
|
+
|
|
17
20
|
Forge supports API-key access for DeepSeek and OpenAI-compatible providers, as
|
|
18
21
|
well as ChatGPT subscription access through the official Codex App Server. Run
|
|
19
22
|
`forge auth status` or use `/login` in the interactive terminal to inspect the
|
|
@@ -24,11 +27,13 @@ available authentication routes.
|
|
|
24
27
|
```bash
|
|
25
28
|
forge update check
|
|
26
29
|
forge update
|
|
30
|
+
forge update 0.3.0
|
|
27
31
|
```
|
|
28
32
|
|
|
29
33
|
Forge never installs an update merely because the CLI started. `forge update`
|
|
30
34
|
is an explicit request and installs the exact version resolved from the npm
|
|
31
|
-
registry.
|
|
35
|
+
registry. Set `FORGE_DISABLE_UPDATE_CHECK=1` to disable the advisory background
|
|
36
|
+
check performed during interactive startup.
|
|
32
37
|
|
|
33
38
|
Documentation, source, security boundaries, and evaluation evidence are
|
|
34
39
|
available in the [Forge repository](https://github.com/jslee124/forge).
|