@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.
Files changed (52) hide show
  1. package/README.md +11 -14
  2. package/bin/ax-service +0 -0
  3. package/bin/simulator-server +0 -0
  4. package/dist/bundled-paths.d.ts +2 -0
  5. package/dist/bundled-paths.js +9 -0
  6. package/dist/bundled-paths.js.map +1 -0
  7. package/dist/cli-cmds.mjs +729 -0
  8. package/dist/cli.d.ts +15 -6
  9. package/dist/cli.js +59 -12
  10. package/dist/cli.js.map +1 -1
  11. package/dist/installer.mjs +14730 -0
  12. package/dist/mcp-server.mjs +14352 -0
  13. package/dist/preview-ui/index.html +799 -0
  14. package/dist/tool-server.cjs +4223 -1169
  15. package/dylibs/libArgentInjectionBootstrap.dylib +0 -0
  16. package/dylibs/libKeyboardPatch.dylib +0 -0
  17. package/dylibs/libNativeDevtoolsIos.dylib +0 -0
  18. package/package.json +15 -12
  19. package/skills/argent-react-native-profiler/SKILL.md +16 -12
  20. package/dist/auto-screenshot.d.ts +0 -22
  21. package/dist/auto-screenshot.js +0 -79
  22. package/dist/auto-screenshot.js.map +0 -1
  23. package/dist/cli/constants.d.ts +0 -6
  24. package/dist/cli/constants.js +0 -12
  25. package/dist/cli/constants.js.map +0 -1
  26. package/dist/cli/init.d.ts +0 -2
  27. package/dist/cli/init.js +0 -529
  28. package/dist/cli/init.js.map +0 -1
  29. package/dist/cli/mcp-configs.d.ts +0 -38
  30. package/dist/cli/mcp-configs.js +0 -779
  31. package/dist/cli/mcp-configs.js.map +0 -1
  32. package/dist/cli/skills.d.ts +0 -14
  33. package/dist/cli/skills.js +0 -95
  34. package/dist/cli/skills.js.map +0 -1
  35. package/dist/cli/uninstall.d.ts +0 -13
  36. package/dist/cli/uninstall.js +0 -389
  37. package/dist/cli/uninstall.js.map +0 -1
  38. package/dist/cli/update.d.ts +0 -1
  39. package/dist/cli/update.js +0 -115
  40. package/dist/cli/update.js.map +0 -1
  41. package/dist/cli/utils.d.ts +0 -38
  42. package/dist/cli/utils.js +0 -272
  43. package/dist/cli/utils.js.map +0 -1
  44. package/dist/content.d.ts +0 -31
  45. package/dist/content.js +0 -59
  46. package/dist/content.js.map +0 -1
  47. package/dist/launcher.d.ts +0 -8
  48. package/dist/launcher.js +0 -183
  49. package/dist/launcher.js.map +0 -1
  50. package/dist/mcp-server.d.ts +0 -1
  51. package/dist/mcp-server.js +0 -228
  52. 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
- <picture>
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
Binary file
@@ -0,0 +1,2 @@
1
+ import type { ToolsServerPaths } from "@argent/tools-client";
2
+ export declare const BUNDLED_RUNTIME_PATHS: ToolsServerPaths;
@@ -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"}