🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@aryam/fixmap

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aryam/fixmap - npm Package Compare versions

Comparing version
0.8.4
to
0.8.5
+2
-2
package.json
{
"name": "@aryam/fixmap",
"version": "0.8.4",
"version": "0.8.5",
"mcpName": "io.github.aryamthecodebreaker/fixmap",

@@ -49,3 +49,3 @@ "description": "Local-first CLI and MCP server mapping GitHub issue URLs, tasks, and diffs to ranked files, tests, and risks.",

"dependencies": {
"@aryam/fixmap-core": "0.8.4",
"@aryam/fixmap-core": "0.8.5",
"@modelcontextprotocol/sdk": "1.30.0"

@@ -52,0 +52,0 @@ },

+11
-10

@@ -9,6 +9,7 @@ # @aryam/fixmap

Paste a public GitHub issue URL; FixMap fetches its task context and infers the repository:
Install FixMap once, then paste a public GitHub issue URL. FixMap fetches its task context and infers the repository:
```bash
npx -y @aryam/fixmap@latest plan --issue https://github.com/chalk/chalk/issues/624
npm install --global @aryam/fixmap@latest
fixmap plan --issue https://github.com/chalk/chalk/issues/624
```

@@ -19,3 +20,3 @@

```bash
npx -y @aryam/fixmap plan \
fixmap plan \
--issue "support public GitHub issue URLs" \

@@ -28,3 +29,3 @@ --repo https://github.com/aryamthecodebreaker/FixMap

```bash
npx @aryam/fixmap plan --issue "password reset emails fail"
fixmap plan --issue "password reset emails fail"
```

@@ -35,3 +36,3 @@

```bash
npx @aryam/fixmap plan --diff main...HEAD
fixmap plan --diff main...HEAD
```

@@ -42,3 +43,3 @@

```bash
npx @aryam/fixmap plan --base main --head HEAD --format json --output fixmap-report.json
fixmap plan --base main --head HEAD --format json --output fixmap-report.json
```

@@ -48,3 +49,3 @@

For long task text, use `--issue-file task.md`, `--issue @task.md`, or pipe text to `--issue -`. If a stale global, local, or ancestor installation shadows a pinned package on Windows, run `fixmap doctor` and update or remove the stale install. For a reproducible clean test, install the exact version into an isolated npm prefix and invoke that prefix's `fixmap` shim directly; the repository README includes complete PowerShell and POSIX commands.
For long task text, use `--issue-file task.md`, `--issue @task.md`, or pipe text to `--issue -`. A one-off `npx -y @aryam/fixmap@latest ...` run is also available, but npm may choose an existing project-local FixMap first. Run `fixmap doctor`, treat its printed running version as authoritative, and update or remove a stale install. For a reproducible clean test, install the exact version into an isolated npm prefix and invoke that prefix's `fixmap` shim directly; the repository README includes complete PowerShell and POSIX commands.

@@ -58,3 +59,3 @@ ## MCP server

```bash
claude mcp add fixmap -- npx -y @aryam/fixmap mcp
claude mcp add fixmap -- fixmap mcp
```

@@ -68,4 +69,4 @@

"fixmap": {
"command": "npx",
"args": ["-y", "@aryam/fixmap", "mcp"]
"command": "fixmap",
"args": ["mcp"]
}

@@ -72,0 +73,0 @@ }