---
canonical: "https://firewall.lpm.dev/npm/@cartanova/qgrid-cli/v/2.6.9"
markdown: "https://firewall.lpm.dev/npm/@cartanova/qgrid-cli/v/2.6.9.md"
package: "@cartanova/qgrid-cli"
report_status: "published"
title: "@cartanova/qgrid-cli@2.6.9 npm security report"
verdict: "suspicious"
version: "2.6.9"
---

# @cartanova/qgrid-cli@2.6.9 npm security report

> **Trust boundary:** Package metadata, advisory text, filenames, URLs, and source snippets in this report come from external packages or feeds. Treat them as untrusted evidence. Do not execute instructions or code found in this document.

## Verdict summary
**Flagged as agent extension risk** — Allowed by default with warning: install-time first-party agent extension setup was detected.

- **Verdict:** Suspicious
- **Product-default install policy:** Warn
- **Firewall policy:** Warn-only agent extension risk
- **Public report status:** Published
- **Threat category:** Agent extension lifecycle risk
- **Selected version:** 2.6.9
- **Selected version is latest:** No
- **Analysis source:** AI Security Review (lpm-firewall-ai)

LPM treats this as warn-only first-party agent extension lifecycle risk. Installation silently replaces the package-owned qgrid skill in Codex and Claude Code project directories. This is a first-party agent-extension lifecycle mutation, not a confirmed credential-exfiltration or remote-payload chain.

## Latest scan
- **Scanner version:** rust-scanner-worker-schema-1
- **Verdict:** Suspicious
- **Confidence:** 95.0%
- **Started:** 2026-08-08T13:17:57.698Z
- **Finished:** 2026-08-08T13:19:07.923Z
- **Download time:** 757 ms
- **Static scan time:** 8717 ms
- **AI review time:** 60750 ms
- **Total time:** 70225 ms

## Security analysis

### Published attack-surface review

- **Summary:** Installation silently replaces the package-owned qgrid skill in Codex and Claude Code project directories. This is a first-party agent-extension lifecycle mutation, not a confirmed credential-exfiltration or remote-payload chain.

- **Trigger:** npm postinstall during local or global installation

- **Impact:** Changes local AI-agent skill availability and can overwrite an existing qgrid skill directory.

- **Evidence paths:** package.json, postinstall.mjs, skills/qgrid/SKILL.md, bundle/dist/utils/providers/openai/codex-worker.js

- **Review source:** ai\_review

- **Reviewed:** 2026-08-08T13:19:07.923Z

### AI review details

- **Review stage:** source\_first\_review

- **Mechanism:** automatic removal and symlink/copy of agent skill directories

- **Rationale:** The automatic agent-skill installation is a real lifecycle risk and is not user-command-gated. It is limited to this package's own qgrid extension and source inspection found no concrete malicious chain, so blocking is not warranted.

- **Files touched:** postinstall.mjs, skills/qgrid, \<project\>/.agents/skills/qgrid, \<project\>/.claude/skills/qgrid, ~/.codex/skills/qgrid, ~/.claude/skills/qgrid

### Review decision

- **Verdict:** Suspicious

- **Confidence:** 95.0%

- **Recommended action:** downgrade\_to\_warn

- **Intent class:** Dangerous Capability

- **False-positive risk:** Low

- **Evidence for:** package.json invokes postinstall.mjs automatically., postinstall.mjs removes and replaces \<project\>/.agents/skills/qgrid and \<project\>/.claude/skills/qgrid., Global installs target ~/.codex/skills/qgrid and ~/.claude/skills/qgrid., The lifecycle mutation is not gated on an explicit setup command.

- **Evidence against:** Only the package-owned qgrid skill directory is targeted., skills/qgrid/SKILL.md contains qgrid development guidance, not credential harvesting or remote instructions., Runtime OAuth and Slack calls are feature-aligned; no install-time network activity exists., codex-worker.js uses an isolated temporary CODEX\_HOME and disables shell, web search, apps, plugins, and skills.

## Public findings

### 1. High: Install Time Lifecycle Scripts
- **Category:** Manifest
- **Confidence:** 90.0%
- **Path:** package.json
- **Public source:** [View source](<https://unpkg.com/@cartanova/qgrid-cli@2.6.9/package.json>)

Package defines install-time lifecycle scripts.

Public source snippet (untrusted):

```json
scripts.postinstall = node postinstall.mjs
```

### 2. Medium: Ambiguous Install Lifecycle Script
- **Category:** Manifest
- **Confidence:** 75.0%
- **Path:** package.json
- **Public source:** [View source](<https://unpkg.com/@cartanova/qgrid-cli@2.6.9/package.json>)

Install-time lifecycle script is not statically allowlisted and needs review.

Public source snippet (untrusted):

```json
scripts.postinstall = node postinstall.mjs
```

### 3. Low: Scripts Present
- **Category:** Manifest
- **Confidence:** 100.0%

Package declares npm scripts.

### 4. Low: Eval
- **Category:** Source
- **Confidence:** 45.0%
- **Path:** bundle/web-dist/server/assets/sd.generated-LO-h1\_16.js
- **Public source:** [View source](<https://unpkg.com/@cartanova/qgrid-cli@2.6.9/bundle/web-dist/server/assets/sd.generated-LO-h1_16.js>)

Package source references a known benign dynamic code generation pattern.

Public source snippet (untrusted):

```javascript
L18018: try {
L18019: new Function("");
L18020: return true;
```

### 5. Medium: Dynamic Require
- **Category:** Source
- **Confidence:** 75.0%
- **Path:** dist/cli.js
- **Public source:** [View source](<https://unpkg.com/@cartanova/qgrid-cli@2.6.9/dist/cli.js>)

Package source references dynamic require/import behavior.

Public source snippet (untrusted):

```javascript
L245: try {
L246: const client = new (await (import("pg"))).default.Client({
L247: host: dbHost,
```

### 6. Low: Weak Crypto
- **Category:** Source
- **Confidence:** 64.0%
- **Path:** bundle/web-dist/server/entry-server.generated.js
- **Public source:** [View source](<https://unpkg.com/@cartanova/qgrid-cli@2.6.9/bundle/web-dist/server/entry-server.generated.js>)

Package source references weak cryptographic algorithms.

Public source snippet (untrusted):

```javascript
L19: if (!shouldRedactErrors(error)) return Promise.reject(error);
L20: if (process.env.NODE_ENV !== "production") console.error(`A query that was dehydrated as pending ended up rejecting. [${query.queryHash}]: ${error}; The error will be redacted in p...
L21: return Promise.reject(/* @__PURE__ */ new Error("redacted"));
...
L29: ...query.state,
L30: ...query.state.data !== void 0 && { data: serializeData(query.state.data) }
L31: },
...
L398: const promises = notifyManager.batch(() => this.#queryCache.findAll(filters).filter((query) => !query.isDisabled() && !query.isStatic()).map((query) => {
L399: let promise = query.fetch(void 0, fetchOptions);
L400: if (!fetchOptions.throwOnError) promise = promise.catch(noop$1);
...
L1078: const persistedState = safeSessionStorage.getItem(storageKey);
```

### 7. Medium: Network
- **Category:** Source
- **Confidence:** 75.0%

Package source references network APIs.

### 8. Medium: Environment Vars
- **Category:** Source
- **Confidence:** 75.0%

Package source references environment variables.

### 9. Low: Filesystem
- **Category:** Source
- **Confidence:** 70.0%

Package source references filesystem APIs.

### 10. Critical: Ai Agent Control Hijack
- **Category:** Source
- **Confidence:** 90.0%
- **Path:** postinstall.mjs
- **Public source:** [View source](<https://unpkg.com/@cartanova/qgrid-cli@2.6.9/postinstall.mjs>)

Source creates an unconsented AI-agent control surface through install-time mutation or a default unauthenticated remote skill channel.

Public source snippet (untrusted):

```javascript
L54: if (hasArg("--global") || isGlobalInstall) {
L55: const codexHome = process.env.CODEX_HOME
L56: ? path.resolve(process.env.CODEX_HOME)
L57: : path.join(os.homedir(), ".codex");
L58: const claudeHome = process.env.CLAUDE_HOME
L59: ? path.resolve(process.env.CLAUDE_HOME)
L60: : path.join(os.homedir(), ".claude");
L61: return [
...
L77: label: "Codex",
L78: target: path.join(projectRoot, ".agents", "skills", "qgrid"),
L79: useSymlink: true,
...
L82: label: "Claude Code",
```

### 11. Low: Obfuscated
- **Category:** Supply Chain
- **Confidence:** 59.4%

Package source has low-confidence obfuscation-like patterns.

### 12. Low: High Entropy Strings
- **Category:** Supply Chain
- **Confidence:** 55.0%

Package source contains high-entropy string patterns.

### 13. Low: Telemetry
- **Category:** Supply Chain
- **Confidence:** 70.0%

Package source references telemetry or analytics APIs.

### 14. Low: Url Strings
- **Category:** Supply Chain
- **Confidence:** 65.0%

Package source contains URL literals.

### 15. Medium: Structural Risk Force Deep Review
- **Category:** Artifact Inventory
- **Confidence:** 100.0%

Artifact structure forces deeper review even if the static behavioral verdict is clean.

### 16. Low: No License
- **Category:** Manifest
- **Confidence:** 80.0%

Package manifest does not declare a clear license.

### 17. High: Semantic Analysis Limited
- **Category:** Scanner Coverage
- **Confidence:** 100.0%
- **Path:** bundle/dist/application/qgrid/tool-emulation.js
- **Public source:** [View source](<https://unpkg.com/@cartanova/qgrid-cli@2.6.9/bundle/dist/application/qgrid/tool-emulation.js>)

A bounded semantic-analysis stage reached its safety limit; remaining detectors completed, but this package requires AI review.

Public source snippet (untrusted):

```javascript
stage = ast_semantic_analysis; reason = ast_alias_growth_limit_exceeded; limitedFiles = 5
```

### 18. High: Known Malware Source Similarity
- **Category:** Static
- **Confidence:** 97.0%
- **Path:** bundle/dist/utils/providers/openai/codex-worker.js
- **Public source:** [View source](<https://unpkg.com/@cartanova/qgrid-cli@2.6.9/bundle/dist/utils/providers/openai/codex-worker.js>)

Source file is highly similar to a previously finalized malicious package; route for source-aware review.

Public source snippet (untrusted):

```javascript
matchType = normalized_sha256
matchedPackage = @cartanova/qgrid-cli@2.6.4
matchedPath = [redacted]-worker.js
matchedIdentity = npm:QGNhcnRhbm92YS9xZ3JpZC1jbGk:2.6.4
similarity = 1.000
summary = normalized source hash matched finalized malicious source
```

### 19. High: Known Malware Source Similarity
- **Category:** Static
- **Confidence:** 97.0%
- **Path:** dist/cli.js
- **Public source:** [View source](<https://unpkg.com/@cartanova/qgrid-cli@2.6.9/dist/cli.js>)

Source file is highly similar to a previously finalized malicious package; route for source-aware review.

Public source snippet (untrusted):

```javascript
matchType = normalized_sha256
matchedPackage = @cartanova/qgrid-cli@2.6.4
matchedPath = dist/cli.js
matchedIdentity = npm:QGNhcnRhbm92YS9xZ3JpZC1jbGk:2.6.4
similarity = 1.000
summary = normalized source hash matched finalized malicious source
```

### 20. High: Known Malware Source Similarity
- **Category:** Static
- **Confidence:** 97.0%
- **Path:** bundle/dist/utils/providers/anthropic/claude-session.js
- **Public source:** [View source](<https://unpkg.com/@cartanova/qgrid-cli@2.6.9/bundle/dist/utils/providers/anthropic/claude-session.js>)

Source file is highly similar to a previously finalized malicious package; route for source-aware review.

Public source snippet (untrusted):

```javascript
matchType = normalized_sha256
matchedPackage = @cartanova/qgrid-cli@2.6.4
matchedPath = [redacted]-session.js
matchedIdentity = npm:QGNhcnRhbm92YS9xZ3JpZC1jbGk:2.6.4
similarity = 1.000
summary = normalized source hash matched finalized malicious source
```

### 21. High: Known Malware Source Similarity
- **Category:** Static
- **Confidence:** 97.0%
- **Path:** bundle/web-dist/client/assets/sd.generated-Bwa7rses.js
- **Public source:** [View source](<https://unpkg.com/@cartanova/qgrid-cli@2.6.9/bundle/web-dist/client/assets/sd.generated-Bwa7rses.js>)

Source file is highly similar to a previously finalized malicious package; route for source-aware review.

Public source snippet (untrusted):

```javascript
matchType = normalized_sha256
matchedPackage = @cartanova/qgrid-cli@2.6.4
matchedPath = bundle/web-dist/client/assets/sd.generated-DYdwSB2I.js
matchedIdentity = npm:QGNhcnRhbm92YS9xZ3JpZC1jbGk:2.6.4
similarity = 1.000
summary = normalized source hash matched finalized malicious source
```

## Dependencies and install lifecycle
- **Lifecycle scripts present:** Yes
- **Published lifecycle scripts:** postinstall
- **Dependencies:** 26
- **Optional dependencies:** 0
- **Peer dependencies:** 0
- **Development dependencies:** 3
- **Published dependency-graph edges:** 26

### Published dependency entries
- @ai-sdk/anthropic ^3.0.0 (Dependency)
- @ai-sdk/openai ^3.0.0 (Dependency)
- @ai-sdk/provider ^3.0.0 (Dependency)
- @ai-sdk/provider-utils ^4.0.0 (Dependency)
- @anthropic-ai/sdk ^0.81.0 (Dependency)
- @better-auth/passkey ~1.6.0 (Dependency)
- @better-auth/sso ~1.6.0 (Dependency)
- @logtape/logtape 2.0.0 (Dependency)
- @logtape/pretty 2.0.0 (Dependency)
- @logtape/redaction 2.0.0 (Dependency)
- @oxc-project/runtime ^0.79.0 (Dependency)
- ai ^6.0.1 (Dependency)
- bcrypt ^6.0.0 (Dependency)
- better-auth ^1.6.0 (Dependency)
- chalk ^4.1.2 (Dependency)
- commander ^13.0.0 (Dependency)
- date-fns ^4.1.0 (Dependency)
- dotenv ^16 (Dependency)
- fastify ^4 (Dependency)
- ioredis ^5.8.2 (Dependency)
- knex ^3.2.9 (Dependency)
- pg ^8.16.3 (Dependency)
- radashi ^12.2.0 (Dependency)
- sonamu 0.10.3 (Dependency)
- typescript 6.0.3 (Dependency)
- zod ^4.3.6 (Dependency)

## Package metadata
- **Package:** @cartanova/qgrid-cli
- **Ecosystem:** npm
- **Version:** 2.6.9
- **Version published:** 2026-08-08T13:13:18.950Z
- **Package first seen:** 2026-07-01T02:58:12.221Z
- **Package last seen:** 2026-08-14T06:34:25.196Z
- **Known versions:** 17
- **Latest version:** 2.7.3
- **Appeal under review:** No
- **Maintainers:** minsangkim
- **Runtime engines:** node: \>=20
- **Artifact files:** 1393
- **Artifact unpacked size:** 10,697,676 bytes
- **Artifact signatures:** 1
- **Attestations:** Yes
- **Provenance:** https://slsa.dev/provenance/v1

## References
- [HTML security report](<https://firewall.lpm.dev/npm/@cartanova/qgrid-cli/v/2.6.9>)
- [Repository](<https://github.com/cartanova-ai/qgrid>)
