logpare 0.0.1

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 (3) hide show
  1. package/README.md +32 -0
  2. package/index.js +1 -0
  3. package/package.json +23 -0
package/README.md ADDED
@@ -0,0 +1,32 @@
1
+ # logpare
2
+
3
+ **Semantic log reduction for LLM debugging and agent workflows**
4
+
5
+ ## Install
6
+
7
+ For the MCP server implementation:
8
+ ```bash
9
+ npm install @logpare/mcp
10
+ ```
11
+
12
+ ## What is LogPare?
13
+
14
+ LogPare compresses console logs 60-90% through pattern deduplication and template extraction, making them usable in LLM context windows.
15
+
16
+ **Use cases:**
17
+ - Compress build logs before pasting into Claude/Cursor
18
+ - Reduce verbose server logs for AI debugging
19
+ - Extract signal from noisy test output
20
+
21
+ ## Packages
22
+
23
+ - **[@logpare/mcp](https://npmjs.com/package/@logpare/mcp)** - MCP server for Claude, Cursor, and AI assistants
24
+
25
+ ## Links
26
+
27
+ - GitHub: https://github.com/logpare
28
+ - Repository: https://github.com/logpare/logpare-mcp
29
+
30
+ ## License
31
+
32
+ MIT © Jeff Green
package/index.js ADDED
@@ -0,0 +1 @@
1
+ module.exports = {};
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "logpare",
3
+ "version": "0.0.1",
4
+ "description": "Semantic log reduction for LLM debugging - see @logpare/mcp for the MCP server implementation",
5
+ "main": "index.js",
6
+ "keywords": [
7
+ "log",
8
+ "compression",
9
+ "llm",
10
+ "mcp",
11
+ "semantic-reduction"
12
+ ],
13
+ "author": "Jeff Green <contact@hirejeffgreen.com>",
14
+ "license": "MIT",
15
+ "homepage": "https://github.com/logpare",
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/logpare/logpare-mcp"
19
+ },
20
+ "bugs": {
21
+ "url": "https://github.com/logpare/logpare-mcp/issues"
22
+ }
23
+ }