---
canonical: "https://firewall.lpm.dev/npm/llm-wiki-loop/v/0.1.1"
markdown: "https://firewall.lpm.dev/npm/llm-wiki-loop/v/0.1.1.md"
package: "llm-wiki-loop"
report_status: "published"
title: "llm-wiki-loop@0.1.1 npm security report"
verdict: "suspicious"
version: "0.1.1"
---

# llm-wiki-loop@0.1.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 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:** 0.1.1
- **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. npm postinstall deploys the bundled wiki-manager agent skill into already-present global or project runtime directories. No exfiltration or remote execution is present.

## Latest scan
- **Scanner version:** rust-scanner-worker-schema-1
- **Verdict:** Suspicious
- **Confidence:** 91.0%
- **Started:** 2026-08-14T14:14:47.641Z
- **Finished:** 2026-08-14T14:15:57.794Z
- **Download time:** 260 ms
- **Static scan time:** 20 ms
- **AI review time:** 69871 ms
- **Total time:** 70153 ms

## Security analysis

### Published attack-surface review

- **Summary:** npm postinstall deploys the bundled wiki-manager agent skill into already-present global or project runtime directories. No exfiltration or remote execution is present.

- **Trigger:** npm install; global mode is selected by npm\_config\_global.

- **Impact:** Adds a runtime-loaded skill and can overwrite its same-named destination.

- **Evidence paths:** package.json, scripts/install.js, skills/wiki-manager/SKILL.md, skills/wiki-manager/scripts/check\_evidence.py

- **Review source:** ai\_review

- **Reviewed:** 2026-08-14T14:15:57.794Z

### AI review details

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

- **Mechanism:** install-time copy into detected AI-agent skill directories

- **Rationale:** This is a package-owned agent-skill installer, but it mutates runtime control surfaces automatically at postinstall. Policy classifies this guarded extension lifecycle behavior as warn rather than a malicious block.

- **Files touched:** skills/wiki-manager, .claude/skills/wiki-manager, .opencode/skills/wiki-manager, .agents/skills/wiki-manager, .cursor/skills/wiki-manager

### Review decision

- **Verdict:** Suspicious

- **Confidence:** 91.0%

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

- **Intent class:** Dangerous Capability

- **False-positive risk:** Low

- **Evidence for:** postinstall runs scripts/install.js., Installer copies a runtime-loaded skill during npm install., It targets existing global and project AI-agent skill directories.

- **Evidence against:** No network, child-process, eval, or credential-access code found., Bundled Python helper is report-only and reads files.

## Public findings

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

Package defines install-time lifecycle scripts.

Public source snippet (untrusted):

```json
scripts.postinstall = node scripts/install.js
```

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

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

Public source snippet (untrusted):

```json
scripts.postinstall = node scripts/install.js
```

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

Package declares npm scripts.

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

Package source references environment variables.

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

Package source references filesystem APIs.

### 6. Critical: Ai Agent Control Hijack
- **Category:** Source
- **Confidence:** 90.0%
- **Path:** scripts/install.js
- **Public source:** [View source](<https://unpkg.com/llm-wiki-loop@0.1.1/scripts/install.js>)

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

Public source snippet (untrusted):

```javascript
L5: // Global install (npm i -g): copies into the home skill dirs of detected
L6: // runtimes (Claude Code ~/.claude/skills, opencode ~/.config/opencode/skills,
L7: // Codex CLI ~/.agents/skills).
L8: //
L9: // Project install (npm i in a project): copies into the project's runtime
L10: // skill dirs (.claude/skills, .opencode/skills, .agents/skills,
L11: // .cursor/skills) whose base directory already exists.
...
L20: const GLOBAL_RUNTIMES = [
L21: { marker: path.join(HOME, ".claude"), dir: path.join(HOME, ".claude", "skills") },
L22: { marker: path.join(HOME, ".config", "opencode"), dir: path.join(HOME, ".config", "opencode", "skills") },
L23: { marker: path.join(HOME, ".agents"), dir: path.join(HOME, ".agents", "skills") },
L24: ];
```

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

Package source contains high-entropy string patterns.

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

Package source contains URL literals.

### 9. Medium: Ships Build Helper
- **Category:** Artifact Inventory
- **Confidence:** 70.0%
- **Path:** skills/wiki-manager/scripts/check\_evidence.py
- **Public source:** [View source](<https://unpkg.com/llm-wiki-loop@0.1.1/skills/wiki-manager/scripts/check_evidence.py>)

Package ships non-JavaScript build or shell helper files.

Public source snippet (untrusted):

```python
path = skills/wiki-manager/scripts/check_evidence.py
kind = build_helper
sizeBytes = 15324
magicHex = [redacted]
```

### 10. 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.

### 11. Medium: Suspicious Lifecycle Evidence
- **Category:** Manifest
- **Confidence:** 91.0%
- **Path:** package.json
- **Public source:** [View source](<https://unpkg.com/llm-wiki-loop@0.1.1/package.json>)

postinstall runs scripts/install.js.

Public source snippet (untrusted):

```json
"scripts": {
    "postinstall": "node scripts/install.js"
  }
```

### 12. Medium: Ai Review Evidence
- **Category:** Ai Review
- **Confidence:** 91.0%
- **Path:** scripts/install.js
- **Public source:** [View source](<https://unpkg.com/llm-wiki-loop@0.1.1/scripts/install.js>)

It targets existing global and project AI-agent skill directories.

Public source snippet (untrusted):

```javascript
const GLOBAL_RUNTIMES = [
  { marker: path.join(HOME, ".claude"), dir: path.join(HOME, ".claude", "skills") },
  { marker: path.join(HOME, ".config", "opencode"), dir: path.join(HOME, ".config", "opencode", "skills") },
  { marker: path.join(HOME, ".agents"), dir: path.join(HOME, ".agents", "skills") },
];

const PROJECT_RUNTIMES = [".claude", ".opencode", ".agents", ".cursor"];
```

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

## Package metadata
- **Package:** llm-wiki-loop
- **Ecosystem:** npm
- **Version:** 0.1.1
- **License:** MIT
- **Version published:** 2026-08-14T14:10:26.741Z
- **Package first seen:** 2026-08-14T14:15:57.794Z
- **Package last seen:** 2026-08-17T01:05:55.694Z
- **Known versions:** 4
- **Latest version:** 1.1.0
- **Appeal under review:** No
- **Description:** The reference architecture for LLM-maintained knowledge vaults — schema, lifecycle loop, machine verification, self-installation. Installs the wiki-manager skill into your agent runtime (Claude Code, Codex CLI, opencode).
- **Maintainers:** naegeon
- **Keywords:** llm-wiki, karpathy, agent-skills, knowledge-vault, second-brain, self-improving, claude-code, codex, opencode, obsidian, skills
- **Runtime engines:** node: \>=16.17
- **Artifact files:** 11
- **Artifact unpacked size:** 58,715 bytes
- **Artifact signatures:** 1
- **Attestations:** No

## References
- [HTML security report](<https://firewall.lpm.dev/npm/llm-wiki-loop/v/0.1.1>)
- [Repository](<https://github.com/PALAN-K/llm-wiki-loop>)
- [Homepage](<https://github.com/PALAN-K/llm-wiki-loop#readme>)
- [Issues](<https://github.com/PALAN-K/llm-wiki-loop/issues>)
