Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"source": "git-subdir",
"url": "https://github.com/XTSoftwareLabs/neatcontext-plugins.git",
"path": "plugins/claude-code/neatcontext",
"ref": "v0.3.4"
"ref": "v0.3.5"
},
"description": "Save Claude Code work as reusable, domain-aware context",
"author": {
Expand Down
4 changes: 2 additions & 2 deletions .github/plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
},
"metadata": {
"description": "Save GitHub Copilot work as reusable, domain-aware context",
"version": "0.3.4"
"version": "0.3.5"
},
"plugins": [
{
"name": "neatcontext",
"description": "Save GitHub Copilot work as reusable, domain-aware context",
"version": "0.3.4",
"version": "0.3.5",
"source": "./plugins/copilot/neatcontext"
}
]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "neatcontext",
"version": "0.3.4",
"version": "0.3.5",
"description": "Save Codex work as reusable, domain-aware context",
"author": {
"name": "XTSoftwareLabs",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ import {
import { assess, createRoutingIndex } from "../core/routing-candidates.mjs";
import { applySelection, resolveContext } from "../core/selection.mjs";

const SERVER_INFO = { name: "neatcontext", version: "0.3.4" };
const SERVER_INFO = { name: "neatcontext", version: "0.3.5" };
const GET_CONTEXT_TOOL = {
name: "get_context",
title: "Get Context",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function createStdioMcpClient({
cwd = null,
env = {},
timeoutMs = DEFAULT_TIMEOUT_MS,
clientInfo = { name: "neatcontext", version: "0.3.4" },
clientInfo = { name: "neatcontext", version: "0.3.5" },
// Injectable so the tests can produce the failures a real child process
// only produces by accident: a pipe that is already gone when we write to it.
spawnProcess = spawn
Expand Down
2 changes: 1 addition & 1 deletion kimi.plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "neatcontext",
"version": "0.3.4",
"version": "0.3.5",
"description": "Save Kimi Code work as reusable, domain-aware context",
"keywords": [
"neatcontext",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "neatcontext-plugins",
"version": "0.3.4",
"version": "0.3.5",
"description": "Host integrations that save AI coding work as reusable, domain-aware context.",
"type": "module",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion plugins/claude-code/neatcontext/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
"name": "neatcontext",
"displayName": "NeatContext",
"version": "0.3.4",
"version": "0.3.5",
"description": "Save Claude Code work as reusable, domain-aware context",
"author": {
"name": "XTSoftwareLabs",
Expand Down
2 changes: 1 addition & 1 deletion plugins/claude-code/neatcontext/src/claude/mcp-bridge.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ import {
import { assess, createRoutingIndex } from "../core/routing-candidates.mjs";
import { applySelection, resolveContext } from "../core/selection.mjs";

const SERVER_INFO = { name: "neatcontext", version: "0.3.4" };
const SERVER_INFO = { name: "neatcontext", version: "0.3.5" };
const GET_CONTEXT_TOOL = {
name: "get_context",
title: "Get Context",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function createStdioMcpClient({
cwd = null,
env = {},
timeoutMs = DEFAULT_TIMEOUT_MS,
clientInfo = { name: "neatcontext", version: "0.3.4" },
clientInfo = { name: "neatcontext", version: "0.3.5" },
// Injectable so the tests can produce the failures a real child process
// only produces by accident: a pipe that is already gone when we write to it.
spawnProcess = spawn
Expand Down
2 changes: 1 addition & 1 deletion plugins/copilot/neatcontext/.github/plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "neatcontext",
"displayName": "NeatContext",
"version": "0.3.4",
"version": "0.3.5",
"description": "Save GitHub Copilot work as reusable, domain-aware context",
"author": {
"name": "XTSoftwareLabs",
Expand Down
2 changes: 1 addition & 1 deletion plugins/copilot/neatcontext/src/copilot/mcp-bridge.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ import {
} from "../core/routing-candidates.mjs";
import { applySelection, resolveContext } from "../core/selection.mjs";

const SERVER_INFO = { name: "neatcontext", version: "0.3.4" };
const SERVER_INFO = { name: "neatcontext", version: "0.3.5" };
const GET_CONTEXT_TOOL = {
name: "get_context",
title: "Get Context",
Expand Down
2 changes: 1 addition & 1 deletion plugins/copilot/neatcontext/src/core/mcp-stdio-client.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function createStdioMcpClient({
cwd = null,
env = {},
timeoutMs = DEFAULT_TIMEOUT_MS,
clientInfo = { name: "neatcontext", version: "0.3.4" },
clientInfo = { name: "neatcontext", version: "0.3.5" },
// Injectable so the tests can produce the failures a real child process
// only produces by accident: a pipe that is already gone when we write to it.
spawnProcess = spawn
Expand Down
2 changes: 1 addition & 1 deletion plugins/kimi-code/neatcontext/kimi.plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "neatcontext",
"version": "0.3.4",
"version": "0.3.5",
"description": "Save Kimi Code work as reusable, domain-aware context",
"keywords": [
"neatcontext",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function createStdioMcpClient({
cwd = null,
env = {},
timeoutMs = DEFAULT_TIMEOUT_MS,
clientInfo = { name: "neatcontext", version: "0.3.4" },
clientInfo = { name: "neatcontext", version: "0.3.5" },
// Injectable so the tests can produce the failures a real child process
// only produces by accident: a pipe that is already gone when we write to it.
spawnProcess = spawn
Expand Down
2 changes: 1 addition & 1 deletion plugins/kimi-code/neatcontext/src/kimi/mcp-bridge.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import {
import { assess, createRoutingIndex } from "../core/routing-candidates.mjs";
import { applySelection, resolveContext } from "../core/selection.mjs";

const SERVER_INFO = { name: "neatcontext", version: "0.3.4" };
const SERVER_INFO = { name: "neatcontext", version: "0.3.5" };
const BIND_SESSION_TOOL = {
name: "bind_session",
title: "Bind Kimi Session",
Expand Down
2 changes: 1 addition & 1 deletion plugins/pi/neatcontext/src/core/mcp-stdio-client.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function createStdioMcpClient({
cwd = null,
env = {},
timeoutMs = DEFAULT_TIMEOUT_MS,
clientInfo = { name: "neatcontext", version: "0.3.4" },
clientInfo = { name: "neatcontext", version: "0.3.5" },
// Injectable so the tests can produce the failures a real child process
// only produces by accident: a pipe that is already gone when we write to it.
spawnProcess = spawn
Expand Down
2 changes: 1 addition & 1 deletion shared/core/mcp-stdio-client.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function createStdioMcpClient({
cwd = null,
env = {},
timeoutMs = DEFAULT_TIMEOUT_MS,
clientInfo = { name: "neatcontext", version: "0.3.4" },
clientInfo = { name: "neatcontext", version: "0.3.5" },
// Injectable so the tests can produce the failures a real child process
// only produces by accident: a pipe that is already gone when we write to it.
spawnProcess = spawn
Expand Down