md-feedback 0.9.8 → 0.9.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/mcp-server.js +3 -3
  2. package/package.json +63 -60
@@ -21069,7 +21069,7 @@ function generateGeneric(title, filePath, sections, fixes, questions, importants
21069
21069
  L.push("");
21070
21070
  }
21071
21071
  L.push("---");
21072
- L.push("*Generated by [md-feedback](https://github.com/yeominux/md-feedback-clean). Delete when done.*");
21072
+ L.push("*Generated by [md-feedback](https://github.com/yeominux/md-feedback). Delete when done.*");
21073
21073
  return L.join("\n");
21074
21074
  }
21075
21075
  function generateContext(title, filePath, sections, highlights, docMemos, target) {
@@ -22678,13 +22678,13 @@ function log(msg) {
22678
22678
  }
22679
22679
  var server = new McpServer({
22680
22680
  name: "md-feedback",
22681
- version: "0.9.8"
22681
+ version: "0.9.9"
22682
22682
  });
22683
22683
  registerTools(server);
22684
22684
  async function main() {
22685
22685
  const transport = new StdioServerTransport();
22686
22686
  await server.connect(transport);
22687
- log(`v${"0.9.8"} ready (stdio)`);
22687
+ log(`v${"0.9.9"} ready (stdio)`);
22688
22688
  }
22689
22689
  main().catch((err) => {
22690
22690
  log(`fatal: ${err}`);
package/package.json CHANGED
@@ -1,60 +1,63 @@
1
- {
2
- "name": "md-feedback",
3
- "version": "0.9.8",
4
- "description": "MCP server for AI plan review — agents read your markdown annotations, mark tasks done, evaluate gates, and generate handoffs.",
5
- "license": "SUL-1.0",
6
- "author": "Yeomin Seon",
7
- "type": "commonjs",
8
- "bin": {
9
- "md-feedback": "./bin/md-feedback.cjs"
10
- },
11
- "files": [
12
- "dist/mcp-server.js",
13
- "bin/md-feedback.cjs",
14
- "README.md"
15
- ],
16
- "scripts": {
17
- "build": "node esbuild.mjs"
18
- },
19
- "dependencies": {
20
- "@modelcontextprotocol/sdk": "^1.12.0",
21
- "zod": "^3.23.0"
22
- },
23
- "devDependencies": {
24
- "esbuild": "^0.24.2",
25
- "typescript": "^5.7.0"
26
- },
27
- "engines": {
28
- "node": ">=18"
29
- },
30
- "repository": {
31
- "type": "git",
32
- "url": "https://github.com/yeominux/md-feedback"
33
- },
34
- "homepage": "https://github.com/yeominux/md-feedback#mcp-server",
35
- "keywords": [
36
- "mcp",
37
- "mcp-server",
38
- "model-context-protocol",
39
- "markdown",
40
- "feedback",
41
- "ai",
42
- "annotation",
43
- "review",
44
- "plan-review",
45
- "ai-agent",
46
- "coding-workflow",
47
- "handoff",
48
- "session-handoff",
49
- "structured-feedback",
50
- "checkpoint",
51
- "ai-context",
52
- "ai-coding",
53
- "claude-code",
54
- "cursor-ai",
55
- "vibe-coding",
56
- "context-engineering",
57
- "gates",
58
- "plan-review-tool"
59
- ]
60
- }
1
+ {
2
+ "name": "md-feedback",
3
+ "version": "0.9.9",
4
+ "description": "MCP server for AI plan review — agents read your markdown annotations, mark tasks done, evaluate gates, and generate handoffs.",
5
+ "license": "SUL-1.0",
6
+ "author": "Yeomin Seon",
7
+ "type": "commonjs",
8
+ "bin": {
9
+ "md-feedback": "./bin/md-feedback.cjs"
10
+ },
11
+ "files": [
12
+ "dist/mcp-server.js",
13
+ "bin/md-feedback.cjs",
14
+ "README.md"
15
+ ],
16
+ "scripts": {
17
+ "build": "node esbuild.mjs"
18
+ },
19
+ "dependencies": {
20
+ "@modelcontextprotocol/sdk": "^1.12.0",
21
+ "zod": "^3.23.0"
22
+ },
23
+ "devDependencies": {
24
+ "esbuild": "^0.24.2",
25
+ "typescript": "^5.7.0"
26
+ },
27
+ "engines": {
28
+ "node": ">=18"
29
+ },
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "https://github.com/yeominux/md-feedback"
33
+ },
34
+ "bugs": {
35
+ "url": "https://github.com/yeominux/md-feedback/issues"
36
+ },
37
+ "homepage": "https://github.com/yeominux/md-feedback#mcp-server",
38
+ "keywords": [
39
+ "mcp",
40
+ "mcp-server",
41
+ "model-context-protocol",
42
+ "markdown",
43
+ "feedback",
44
+ "ai",
45
+ "annotation",
46
+ "review",
47
+ "plan-review",
48
+ "ai-agent",
49
+ "coding-workflow",
50
+ "handoff",
51
+ "session-handoff",
52
+ "structured-feedback",
53
+ "checkpoint",
54
+ "ai-context",
55
+ "ai-coding",
56
+ "claude-code",
57
+ "cursor-ai",
58
+ "vibe-coding",
59
+ "context-engineering",
60
+ "gates",
61
+ "plan-review-tool"
62
+ ]
63
+ }