← Back to scan
File as GitHub Issue repo: nicobailon/pi-subagents

Push this scan report to nicobailon/pi-subagents

Click the green button below to open GitHub’s new-issue form, pre-filled with the report title, summary table, top findings, and an embedded score-card image. No authentication needed — you review on GitHub before submitting. Repobility is credited as the scanner.

Embedded score card image

This image will render at the top of the issue body. Hosted on Repobility, refreshes automatically after re-scans.

Repobility score card

Issue title

Async function without await — fire-and-forget Promise (AI mistake)

Curate findings to include

Pick exactly which findings appear in the issue body. By default the top 5 are included. Uncheck noise, check what matters.

Top 5 (default)
Severity Rule Title File:line
HIGH MINED027 [MINED027] React State Array Mutation: state.X.push/splice/sort followed by setState — Re… src/runs/shared/long-running-guard.ts:162
HIGH SEC114 [SEC114] path.join / Path() on user-controlled segment without containment check: filepat… src/shared/artifacts.ts:20
HIGH SEC114 [SEC114] path.join / Path() on user-controlled segment without containment check: filepat… src/runs/shared/single-output.ts:29
HIGH SEC114 [SEC114] path.join / Path() on user-controlled segment without containment check: filepat… src/extension/doctor.ts:109
HIGH SEC128 [SEC128] Async function without await — fire-and-forget Promise (AI mistake): Async call … src/shared/file-coalescer.ts:27
HIGH SEC128 [SEC128] Async function without await — fire-and-forget Promise (AI mistake): Async call … src/extension/fanout-child.ts:112
HIGH SEC128 [SEC128] Async function without await — fire-and-forget Promise (AI mistake): Async call … src/extension/control-notices.ts:34
HIGH SEC040 [SEC040] innerHTML XSS — template literal with server-supplied data: Setting .innerHTML w… src/runs/background/run-id-resolver.ts:80
HIGH SEC040 [SEC040] innerHTML XSS — template literal with server-supplied data: Setting .innerHTML w… src/extension/doctor.ts:102
HIGH SEC040 [SEC040] innerHTML XSS — template literal with server-supplied data: Setting .innerHTML w… src/agents/agent-serializer.ts:41
HIGH MINED115 Action `actions/setup-node` pinned to mutable ref `@v5` .github/workflows/release.yml:19
HIGH MINED115 Action `actions/checkout` pinned to mutable ref `@v5` .github/workflows/release.yml:18
HIGH MINED115 Action `actions/setup-node` pinned to mutable ref `@v5` .github/workflows/test.yml:18
HIGH MINED115 Action `actions/checkout` pinned to mutable ref `@v5` .github/workflows/test.yml:17
MED DEPCUR-GHA GitHub Action `actions/setup-node@v5` is 1 major version(s) behind (latest v6.4.0) .github/workflows/release.yml:19
MED DEPCUR-GHA GitHub Action `actions/checkout@v5` is 1 major version(s) behind (latest v6.0.2) .github/workflows/release.yml:18
MED DEPCUR-GHA GitHub Action `actions/setup-node@v5` is 1 major version(s) behind (latest v6.4.0) .github/workflows/test.yml:18
MED DEPCUR-GHA GitHub Action `actions/checkout@v5` is 1 major version(s) behind (latest v6.0.2) .github/workflows/test.yml:17
LOW DEPCUR-NPM npm package `@earendil-works/pi-coding-agent` is minor version(s) behind (^0.74.0 -> 0.78… package.json
LOW DEPCUR-NPM npm package `@earendil-works/pi-ai` is minor version(s) behind (^0.74.0 -> 0.78.0) package.json
LOW DEPCUR-NPM npm package `@earendil-works/pi-agent-core` is minor version(s) behind (^0.74.0 -> 0.78.0) package.json
LOW DEPCUR-NPM npm package `@earendil-works/pi-tui` is minor version(s) behind (^0.74.0 -> 0.78.0) package.json
LOW AIC003 Duplicated implementation block across source files src/slash/slash-bridge.ts:142
LOW AIC003 Duplicated implementation block across source files src/runs/shared/nested-events.ts:726
LOW AIC003 Duplicated implementation block across source files src/intercom/intercom-bridge.ts:120
LOW AIC003 Duplicated implementation block across source files src/extension/index.ts:188
LOW CORE_NO_LICENSE No LICENSE file
INFO MINED045 [MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError … src/runs/background/top-level-async.ts:11
INFO MINED045 [MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError … src/runs/background/result-watcher.ts:193
INFO MINED045 [MINED045] Ts Non Null Assertion: x! asserts not null - bypasses null checks - TypeError … src/agents/chain-serializer.ts:97
INFO MINED044 [MINED044] Js Console Log Prod: console.log left in code. Should be replaced with logger … src/extension/fanout-child.ts:109
INFO MINED044 [MINED044] Js Console Log Prod: console.log left in code. Should be replaced with logger … src/extension/config.ts:13
INFO MINED044 [MINED044] Js Console Log Prod: console.log left in code. Should be replaced with logger … install.mjs:24
INFO DEPCUR-NPM npm package `typebox` is patch version(s) behind (^1.1.24 -> 1.1.39) package.json
Reset to top 5 34 findings available (after auto-suppression of test files + won't-fix)

Issue body (markdown)

## Code-quality scan: `nicobailon/pi-subagents`

**Score: 91/100 (B+)**  ·  34 findings  ·  scanned 2026-06-01 04:21 UTC  ·  49,863 LOC

| Severity | Count |
|---|---|
| CRITICAL | 0 |
| HIGH | 14 |
| MEDIUM | 4 |
| LOW | 9 |

📊 [Full filterable report](https://repobility.com/scan/5767aa70-e926-4344-8830-617ecf01445e/)  ·  ![scorecard](https://repobility.com/scan/5767aa70-e926-4344-8830-617ecf01445e/report.png?v=1780287712-s2)

### Top findings

1. **HIGH** `MINED027` — React State Array Mutation
   `src/runs/shared/long-running-guard.ts:162` · CWE-682 · ✓ Repobility
2. **HIGH** `SEC114` — path.join / Path() on user-controlled segment without containment check
   `src/shared/artifacts.ts:20` · A01:2021 Broken Access Control (path traversal)
3. **HIGH** `SEC114` — path.join / Path() on user-controlled segment without containment check
   `src/runs/shared/single-output.ts:29` · A01:2021 Broken Access Control (path traversal)
4. **HIGH** `SEC114` — path.join / Path() on user-controlled segment without containment check
   `src/extension/doctor.ts:109` · A01:2021 Broken Access Control (path traversal)
5. **HIGH** `SEC128` — Async function without await — fire-and-forget Promise (AI mistake)
   `src/shared/file-coalescer.ts:27`

---

**Security note**: this issue is public. If any flagged finding is a real, exploitable vulnerability, please redirect to your `SECURITY.md` policy or open a [private security advisory](https://docs.github.com/en/code-security/security-advisories/guidance-on-reporting-and-writing-information-about-vulnerabilities/privately-reporting-a-security-vulnerability) instead. We're happy to close this and re-submit privately.

---

_Filed automatically. Close this issue if not useful — we won't refile. Full report: https://repobility.com/scan/5767aa70-e926-4344-8830-617ecf01445e/_
Premium account
This scan was submitted by a Enterprise-tier account. Premium accounts have full outreach control â Repobility doesn't pre-fill the 'file as GitHub issue' button for paid users. You can still file the issue manually using the markdown body above (Copy markdown), or contact us if you'd like batch-filing enabled for your account.
Megaproject â high spam risk
Could not determine 'nicobailon/pi-subagents' star count (GitHub API rate-limited or unreachable). When in doubt about repo size, prefer opening a focused PR or a discussion rather than an issue.

The button opens GitHubâs new-issue page in a new tab. You will see the title + body pre-filled â review, edit if you want, then click GitHubâs "Submit new issue" button. Repobility never posts anything on your behalf.

For real security findings on big repos: use the project's SECURITY.md or private advisory flow instead of a public issue.