@swmansion/argent 0.12.0 → 0.12.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.
- package/README.md +13 -8
- package/bin/argent-android-devtools-0.1.0.apk +0 -0
- package/bin/darwin/ax-service +0 -0
- package/dist/cli-cmds.mjs +7226 -756
- package/dist/cli.js +3 -0
- package/dist/cli.js.map +1 -1
- package/dist/installer.mjs +9731 -2819
- package/dist/mcp-server.mjs +2749 -116
- package/dist/tool-server.cjs +93541 -55247
- package/dylibs/libArgentInjectionBootstrap.dylib +0 -0
- package/dylibs/libKeyboardPatch.dylib +0 -0
- package/dylibs/libNativeDevtoolsIos.dylib +0 -0
- package/package.json +11 -7
- package/rules/argent.md +16 -1
- package/skills/argent-native-profiler/SKILL.md +3 -3
package/README.md
CHANGED
|
@@ -36,7 +36,7 @@ npx @swmansion/argent init
|
|
|
36
36
|
|
|
37
37
|
#### Prerequisites
|
|
38
38
|
|
|
39
|
-
- **Node.js
|
|
39
|
+
- **Node.js 20.11** or later
|
|
40
40
|
- For iOS: macOS with **Xcode** installed
|
|
41
41
|
- For Android: **Android SDK Platform Tools** (`adb`) on `PATH`, and the **Android Emulator** package if you want to boot AVDs from Argent. Create AVDs via Android Studio or `avdmanager`.
|
|
42
42
|
|
|
@@ -111,6 +111,7 @@ argent init
|
|
|
111
111
|
| `argent enable` | Enable a predefined feature flag (`--scope project` for project-local) |
|
|
112
112
|
| `argent disable` | Disable a feature flag (`--scope project` for project-local) |
|
|
113
113
|
| `argent flags` | List available feature flags and their state |
|
|
114
|
+
| `argent telemetry` | Manage anonymous telemetry: `status` / `enable` / `disable` |
|
|
114
115
|
|
|
115
116
|
## Supported Editors
|
|
116
117
|
|
|
@@ -121,20 +122,24 @@ argent init
|
|
|
121
122
|
| Claude Code | `.mcp.json` (project) or `~/.claude.json` (global) |
|
|
122
123
|
| Cursor | `.cursor/mcp.json` (project) or `~/.cursor/mcp.json` (global) |
|
|
123
124
|
| VS Code | `.vscode/mcp.json` |
|
|
124
|
-
| Windsurf |
|
|
125
|
+
| Windsurf | `~/.codeium/windsurf/mcp_config.json` (global) |
|
|
125
126
|
| Zed | `.zed/settings.json` |
|
|
126
127
|
| Gemini CLI | `.gemini/settings.json` |
|
|
127
|
-
| Codex CLI | `.codex/config.
|
|
128
|
+
| Codex CLI | `.codex/config.toml` (project) or `~/.codex/config.toml` (global) |
|
|
129
|
+
| Hermes | `~/.hermes/config.yaml` (global) |
|
|
128
130
|
| opencode | `opencode.json` (project) or `~/.config/opencode/opencode.json` (global) |
|
|
129
131
|
|
|
130
132
|
## Privacy
|
|
131
133
|
|
|
132
|
-
Argent
|
|
133
|
-
No telemetry, no analytics, no crash reporting.
|
|
134
|
+
Argent collects anonymous, opt-out usage and diagnostic telemetry to help us prioritise features and fix what breaks. It is minimal by design.
|
|
134
135
|
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
136
|
+
You can opt out at any time:
|
|
137
|
+
|
|
138
|
+
```bash
|
|
139
|
+
argent telemetry disable # check status with: argent telemetry status
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
For the full details — see the [Argent Privacy Notice (Telemetry)](https://github.com/software-mansion/argent/blob/main/Telemetry.md).
|
|
138
143
|
|
|
139
144
|
## License
|
|
140
145
|
|
|
Binary file
|
package/bin/darwin/ax-service
CHANGED
|
Binary file
|