@swmansion/argent 0.5.3 → 0.6.0-next.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.
- package/README.md +11 -14
- package/bin/ax-service +0 -0
- package/bin/simulator-server +0 -0
- package/dist/bundled-paths.d.ts +2 -0
- package/dist/bundled-paths.js +9 -0
- package/dist/bundled-paths.js.map +1 -0
- package/dist/cli-cmds.mjs +729 -0
- package/dist/cli.d.ts +15 -6
- package/dist/cli.js +59 -12
- package/dist/cli.js.map +1 -1
- package/dist/installer.mjs +14730 -0
- package/dist/mcp-server.mjs +14352 -0
- package/dist/preview-ui/index.html +799 -0
- package/dist/tool-server.cjs +4223 -1169
- package/dylibs/libArgentInjectionBootstrap.dylib +0 -0
- package/dylibs/libKeyboardPatch.dylib +0 -0
- package/dylibs/libNativeDevtoolsIos.dylib +0 -0
- package/package.json +15 -12
- package/skills/argent-react-native-profiler/SKILL.md +16 -12
- package/dist/auto-screenshot.d.ts +0 -22
- package/dist/auto-screenshot.js +0 -79
- package/dist/auto-screenshot.js.map +0 -1
- package/dist/cli/constants.d.ts +0 -6
- package/dist/cli/constants.js +0 -12
- package/dist/cli/constants.js.map +0 -1
- package/dist/cli/init.d.ts +0 -2
- package/dist/cli/init.js +0 -529
- package/dist/cli/init.js.map +0 -1
- package/dist/cli/mcp-configs.d.ts +0 -38
- package/dist/cli/mcp-configs.js +0 -779
- package/dist/cli/mcp-configs.js.map +0 -1
- package/dist/cli/skills.d.ts +0 -14
- package/dist/cli/skills.js +0 -95
- package/dist/cli/skills.js.map +0 -1
- package/dist/cli/uninstall.d.ts +0 -13
- package/dist/cli/uninstall.js +0 -389
- package/dist/cli/uninstall.js.map +0 -1
- package/dist/cli/update.d.ts +0 -1
- package/dist/cli/update.js +0 -115
- package/dist/cli/update.js.map +0 -1
- package/dist/cli/utils.d.ts +0 -38
- package/dist/cli/utils.js +0 -272
- package/dist/cli/utils.js.map +0 -1
- package/dist/content.d.ts +0 -31
- package/dist/content.js +0 -59
- package/dist/content.js.map +0 -1
- package/dist/launcher.d.ts +0 -8
- package/dist/launcher.js +0 -183
- package/dist/launcher.js.map +0 -1
- package/dist/mcp-server.d.ts +0 -1
- package/dist/mcp-server.js +0 -228
- package/dist/mcp-server.js.map +0 -1
package/README.md
CHANGED
|
@@ -1,11 +1,7 @@
|
|
|
1
1
|
<br/>
|
|
2
2
|
<p align="center">
|
|
3
3
|
<a href="https://argent.swmansion.com">
|
|
4
|
-
<
|
|
5
|
-
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/software-mansion/argent/blob/main/assets/banner_dark_mode.png">
|
|
6
|
-
<source media="(prefers-color-scheme: light)" srcset="https://github.com/software-mansion/argent/blob/main/assets/banner_white_mode.png">
|
|
7
|
-
<img alt="banner" src="https://github.com/software-mansion/argent/blob/main/assets/banner_dark_mode.png" width="80%">
|
|
8
|
-
</picture>
|
|
4
|
+
<img width="1100" height="382" alt="argent-header" src="https://github.com/user-attachments/assets/6cec01d5-da3c-4b6c-97c3-0374a63c213c" />
|
|
9
5
|
</a>
|
|
10
6
|
</p>
|
|
11
7
|
<br/>
|
|
@@ -76,15 +72,16 @@ argent init
|
|
|
76
72
|
|
|
77
73
|
`argent init` auto-detects and configures MCP for:
|
|
78
74
|
|
|
79
|
-
| Editor | Config location
|
|
80
|
-
| ----------- |
|
|
81
|
-
| Claude Code | `.mcp.json` (project) or `~/.claude.json` (global)
|
|
82
|
-
| Cursor | `.cursor/mcp.json` (project) or `~/.cursor/mcp.json` (global)
|
|
83
|
-
| VS Code | `.vscode/mcp.json`
|
|
84
|
-
| Windsurf | `.windsurf/mcp.json`
|
|
85
|
-
| Zed | `.zed/settings.json`
|
|
86
|
-
| Gemini CLI | `.gemini/settings.json`
|
|
87
|
-
| Codex CLI | `.codex/config.yaml`
|
|
75
|
+
| Editor | Config location |
|
|
76
|
+
| ----------- | ------------------------------------------------------------------------ |
|
|
77
|
+
| Claude Code | `.mcp.json` (project) or `~/.claude.json` (global) |
|
|
78
|
+
| Cursor | `.cursor/mcp.json` (project) or `~/.cursor/mcp.json` (global) |
|
|
79
|
+
| VS Code | `.vscode/mcp.json` |
|
|
80
|
+
| Windsurf | `.windsurf/mcp.json` |
|
|
81
|
+
| Zed | `.zed/settings.json` |
|
|
82
|
+
| Gemini CLI | `.gemini/settings.json` |
|
|
83
|
+
| Codex CLI | `.codex/config.yaml` |
|
|
84
|
+
| opencode | `opencode.json` (project) or `~/.config/opencode/opencode.json` (global) |
|
|
88
85
|
|
|
89
86
|
## Privacy
|
|
90
87
|
|
package/bin/ax-service
CHANGED
|
Binary file
|
package/bin/simulator-server
CHANGED
|
Binary file
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as path from "node:path";
|
|
2
|
+
// __dirname in ESM (compiled from TS) will be dist/.
|
|
3
|
+
// Bundle artifacts ship next to the compiled launcher.
|
|
4
|
+
export const BUNDLED_RUNTIME_PATHS = {
|
|
5
|
+
bundlePath: path.join(import.meta.dirname, "tool-server.cjs"),
|
|
6
|
+
simulatorServerDir: path.join(import.meta.dirname, "..", "bin"),
|
|
7
|
+
nativeDevtoolsDir: path.join(import.meta.dirname, "..", "dylibs"),
|
|
8
|
+
};
|
|
9
|
+
//# sourceMappingURL=bundled-paths.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundled-paths.js","sourceRoot":"","sources":["../src/bundled-paths.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC;AAGlC,qDAAqD;AACrD,uDAAuD;AACvD,MAAM,CAAC,MAAM,qBAAqB,GAAqB;IACrD,UAAU,EAAE,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,iBAAiB,CAAC;IAC7D,kBAAkB,EAAE,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,EAAE,KAAK,CAAC;IAC/D,iBAAiB,EAAE,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,EAAE,QAAQ,CAAC;CAClE,CAAC"}
|