---
canonical: "https://firewall.lpm.dev/npm/talking-stick/v/0.12.1"
markdown: "https://firewall.lpm.dev/npm/talking-stick/v/0.12.1.md"
package: "talking-stick"
report_status: "published"
title: "talking-stick@0.12.1 npm security report"
verdict: "suspicious"
version: "0.12.1"
---

# talking-stick@0.12.1 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 — allowed with a warning** — Allowed by default policy, but 18 finding(s) warrant review before installing.

- **Verdict:** Suspicious
- **Product-default install policy:** Warn
- **Firewall policy:** Matched warn-list
- **Public report status:** Published
- **Threat category:** Remote Code Execution
- **Selected version:** 0.12.1
- **Selected version is latest:** Yes
- **Analysis source:** AI Security Review (lpm-firewall-ai)

npm postinstall fetches, extracts, installs, and executes an external skiller binary when one is absent. The checksum is fetched from the same mutable release source, so it does not establish an independent trust boundary.

## Latest scan
- **Scanner version:** rust-scanner-worker-schema-1
- **Verdict:** Suspicious
- **Confidence:** 93.0%
- **Started:** 2026-08-13T19:00:58.170Z
- **Finished:** 2026-08-13T19:01:43.376Z
- **Download time:** 260 ms
- **Static scan time:** 955 ms
- **AI review time:** 43990 ms
- **Total time:** 45206 ms

## Security analysis

### Published attack-surface review

- **Summary:** npm postinstall fetches, extracts, installs, and executes an external skiller binary when one is absent. The checksum is fetched from the same mutable release source, so it does not establish an independent trust boundary.

- **Trigger:** npm install of talking-stick when no usable skiller binary is found

- **Impact:** A compromised or redirected release source can yield code execution as the installing user.

- **Evidence paths:** package.json, scripts/postinstall.cjs, scripts/skiller-bootstrap.cjs, scripts/postinstall-sync.mjs, dist/skill-install.js, dist/instructions.js

- **Review source:** ai\_review

- **Reviewed:** 2026-08-13T19:01:43.376Z

### AI review details

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

- **Mechanism:** install-time remote binary bootstrap and execution

- **Rationale:** The package contains a concrete install-time remote binary execution chain, but the inspected source does not show malicious intent, theft, or destructive behavior. Warn rather than block under the stated policy.

- **Files touched:** scripts/postinstall.cjs, scripts/skiller-bootstrap.cjs, scripts/postinstall-sync.mjs, ~/.local/bin/skiller

- **Network endpoints:** github.com, https://github.com/${SKILLER\_REPO}/releases/download/${SKILLER\_VERSION}

### Review decision

- **Verdict:** Suspicious

- **Confidence:** 93.0%

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

- **Intent class:** Critical Vulnerability

- **False-positive risk:** Low

- **Evidence for:** postinstall invokes the skiller bootstrap., Bootstrap downloads a release archive from GitHub., The downloaded archive is verified only against a co-downloaded checksum, then copied to ~/.local/bin., Bootstrap executes candidate skiller binaries to obtain their version., Postinstall also syncs already-installed agent skills and instructions.

- **Evidence against:** No credential harvesting or data-exfiltration code found., No obfuscated payload, eval, or dynamic code-loading path found., Agent hook/skill changes are guarded by existing config/installed-skill checks or explicit tt install commands.

## Public findings

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

Package defines install-time lifecycle scripts.

Public source snippet (untrusted):

```json
scripts.postinstall = node scripts/postinstall.cjs
```

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

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

Public source snippet (untrusted):

```json
scripts.postinstall = node scripts/postinstall.cjs
```

### 3. Low: Non Install Lifecycle Scripts
- **Category:** Manifest
- **Confidence:** 80.0%

Package declares lifecycle scripts that are not normally run for registry tarball installs.

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

Package declares npm scripts.

### 5. High: Child Process
- **Category:** Source
- **Confidence:** 85.0%
- **Path:** dist/process-utils.js
- **Public source:** [View source](<https://unpkg.com/talking-stick@0.12.1/dist/process-utils.js>)

Package source references child process execution.

Public source snippet (untrusted):

```javascript
L1: import { execFileSync } from "node:child_process";
L2: export function terminateKnownProcess(processRef, options) {
```

### 6. High: Shell
- **Category:** Source
- **Confidence:** 85.0%
- **Path:** dist/instructions.js
- **Public source:** [View source](<https://unpkg.com/talking-stick@0.12.1/dist/instructions.js>)

Package source references shell execution.

Public source snippet (untrusted):

```javascript
L303: stdio: "inherit",
L304: shell: true
L305: });
```

### 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. High: Same File Env Network Execution
- **Category:** Source
- **Confidence:** 85.0%
- **Path:** scripts/skiller-bootstrap.cjs
- **Public source:** [View source](<https://unpkg.com/talking-stick@0.12.1/scripts/skiller-bootstrap.cjs>)

A single source file combines environment access, network access, and code or shell execution; review context before blocking.

Public source snippet (untrusted):

```javascript
L1: #!/usr/bin/env node
L2: const childProcess = require("node:child_process");
L3: const crypto = require("node:crypto");
L4: const fs = require("node:fs");
L5: const https = require("node:https");
L6: const os = require("node:os");
...
L8: 
L9: const SKILLER_VERSION = process.env.TALKING_STICK_SKILLER_VERSION || "v0.1.0";
L10: const SKILLER_MIN_VERSION = process.env.TALKING_STICK_SKILLER_MIN_VERSION || "0.1.0";
```

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

Package source contains high-entropy string patterns.

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

Package source contains URL literals.

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

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

### 14. High: Known Malware Source Similarity
- **Category:** Static
- **Confidence:** 97.0%
- **Path:** scripts/skiller-bootstrap.cjs
- **Public source:** [View source](<https://unpkg.com/talking-stick@0.12.1/scripts/skiller-bootstrap.cjs>)

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 = talking-stick@0.12.0
matchedPath = scripts/sk[redacted]
matchedIdentity = npm:dGFsa2luZy1zdGljaw:0.12.0
similarity = 1.000
summary = normalized source hash matched finalized malicious source
```

### 15. High: Known Malware Source Similarity
- **Category:** Static
- **Confidence:** 97.0%
- **Path:** dist/cli/guardian.js
- **Public source:** [View source](<https://unpkg.com/talking-stick@0.12.1/dist/cli/guardian.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 = talking-stick@0.12.0
matchedPath = dist/cli/guardian.js
matchedIdentity = npm:dGFsa2luZy1zdGljaw:0.12.0
similarity = 1.000
summary = normalized source hash matched finalized malicious source
```

### 16. High: Known Malware Source Similarity
- **Category:** Static
- **Confidence:** 97.0%
- **Path:** dist/install.js
- **Public source:** [View source](<https://unpkg.com/talking-stick@0.12.1/dist/install.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 = talking-stick@0.12.0
matchedPath = dist/install.js
matchedIdentity = npm:dGFsa2luZy1zdGljaw:0.12.0
similarity = 1.000
summary = normalized source hash matched finalized malicious source
```

### 17. High: Known Malware Source Similarity
- **Category:** Static
- **Confidence:** 97.0%
- **Path:** dist/instructions.js
- **Public source:** [View source](<https://unpkg.com/talking-stick@0.12.1/dist/instructions.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 = talking-stick@0.12.0
matchedPath = dist/instructions.js
matchedIdentity = npm:dGFsa2luZy1zdGljaw:0.12.0
similarity = 1.000
summary = normalized source hash matched finalized malicious source
```

### 18. High: Known Malware Source Similarity
- **Category:** Static
- **Confidence:** 97.0%
- **Path:** dist/skiller-adapter.js
- **Public source:** [View source](<https://unpkg.com/talking-stick@0.12.1/dist/skiller-adapter.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 = talking-stick@0.12.0
matchedPath = dist/sk[redacted]
matchedIdentity = npm:dGFsa2luZy1zdGljaw:0.12.0
similarity = 1.000
summary = normalized source hash matched finalized malicious source
```

## Dependencies and install lifecycle
- **Lifecycle scripts present:** Yes
- **Published lifecycle scripts:** postinstall, prepare
- **Dependencies:** 2
- **Optional dependencies:** 0
- **Peer dependencies:** 0
- **Development dependencies:** 5
- **Published dependency-graph edges:** 2

### Published dependency entries
- better-sqlite3 ^12.9.0 (Dependency)
- zod ^3.25.76 (Dependency)

## Package metadata
- **Package:** talking-stick
- **Ecosystem:** npm
- **Version:** 0.12.1
- **License:** MIT
- **Version published:** 2026-08-13T17:35:56.474Z
- **Package first seen:** 2026-08-13T07:58:14.973Z
- **Package last seen:** 2026-08-13T19:01:43.376Z
- **Known versions:** 2
- **Latest version:** 0.12.1
- **Appeal under review:** No
- **Description:** CLI coordination tool for path-scoped agent handoffs.
- **Maintainers:** mostlydev
- **Runtime engines:** node: \>=22
- **Artifact files:** 94
- **Artifact unpacked size:** 607,319 bytes
- **Artifact signatures:** 1
- **Attestations:** No

## References
- [HTML security report](<https://firewall.lpm.dev/npm/talking-stick/v/0.12.1>)
