@qoder-ai/qodercli 0.2.2-beta.3 → 0.2.2-beta.6

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 (25) hide show
  1. package/LICENSE +202 -0
  2. package/README.md +368 -0
  3. package/bin/run.js +57 -0
  4. package/package.json +11 -29
  5. package/bundle/policies/sandbox-default.toml +0 -19
  6. package/bundle/postinstall.cjs +0 -16
  7. package/bundle/qodercli.js +0 -5170
  8. package/bundle/sandbox-macos-permissive-open.sb +0 -27
  9. package/bundle/sandbox-macos-permissive-proxied.sb +0 -37
  10. package/bundle/sandbox-macos-restrictive-open.sb +0 -96
  11. package/bundle/sandbox-macos-restrictive-proxied.sb +0 -98
  12. package/bundle/sandbox-macos-strict-open.sb +0 -131
  13. package/bundle/sandbox-macos-strict-proxied.sb +0 -133
  14. /package/{bundle → bin}/builtin/agent-creator/SKILL.md +0 -0
  15. /package/{bundle → bin}/builtin/hook-config/SKILL.md +0 -0
  16. /package/{bundle → bin}/builtin/mcp-config/SKILL.md +0 -0
  17. /package/{bundle → bin}/builtin/skill-creator/SKILL.md +0 -0
  18. /package/{bundle → bin}/node_modules/@google/gemini-cli-devtools/dist/client/main.js +0 -0
  19. /package/{bundle → bin}/node_modules/@google/gemini-cli-devtools/dist/src/_client-assets.d.ts +0 -0
  20. /package/{bundle → bin}/node_modules/@google/gemini-cli-devtools/dist/src/_client-assets.js +0 -0
  21. /package/{bundle → bin}/node_modules/@google/gemini-cli-devtools/dist/src/index.d.ts +0 -0
  22. /package/{bundle → bin}/node_modules/@google/gemini-cli-devtools/dist/src/index.js +0 -0
  23. /package/{bundle → bin}/node_modules/@google/gemini-cli-devtools/dist/src/types.d.ts +0 -0
  24. /package/{bundle → bin}/node_modules/@google/gemini-cli-devtools/dist/src/types.js +0 -0
  25. /package/{bundle → bin}/node_modules/@google/gemini-cli-devtools/package.json +0 -0
@@ -1,16 +0,0 @@
1
- #!/usr/bin/env node
2
- /**
3
- * npm postinstall hook — writes installation source marker for update routing.
4
- * Aligned with qodercli-old: core/utils/install/source.go reads this file
5
- * to determine how the CLI was installed (npm, homebrew-cask, curl-bash).
6
- */
7
- const fs = require('node:fs');
8
- const path = require('node:path');
9
-
10
- try {
11
- const pkgRoot = path.resolve(__dirname, '..');
12
- const markerPath = path.join(pkgRoot, '.qodercli-install-resource');
13
- fs.writeFileSync(markerPath, 'npm', 'utf8');
14
- } catch {
15
- // Silent failure — marker is best-effort, should never block installation
16
- }