@parseme/cli 0.1.2 → 0.1.3

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.
package/README.md CHANGED
@@ -1,3 +1,23 @@
1
+ # ⚠️ PROJECT DISCONTINUED
2
+
3
+ **This project has been discontinued as of February 16, 2026.**
4
+
5
+ **Reason:** Modern AI coding assistants (Claude Code, Cursor, GitHub Copilot) have evolved to efficiently explore and understand codebases without requiring pre-generated context files. The problem this tool aimed to solve has been addressed by improvements in the AI agents themselves.
6
+
7
+ **What this means:**
8
+
9
+ - No further updates or maintenance
10
+ - npm package has been deprecated
11
+ - Repository will be archived for historical reference
12
+
13
+ **Thank you** to everyone who used or contributed to this project!
14
+
15
+ ---
16
+
17
+ _Original README below for historical reference:_
18
+
19
+ ---
20
+
1
21
  # PARSEME
2
22
 
3
23
  **Local code analysis and context generation to improve token efficiency of AI Coding agents
package/dist/cli/cli.js CHANGED
@@ -8,7 +8,7 @@ const program = new Command();
8
8
  async function promptForMissingConfig(config) {
9
9
  return { ...config };
10
10
  }
11
- program.name('parseme').description('AI Project Context Generator').version('0.1.2');
11
+ program.name('parseme').description('AI Project Context Generator').version('0.1.3');
12
12
  // Generate command
13
13
  program
14
14
  .command('generate')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parseme/cli",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Adds a PARSEME.md file—a README.md for AI agents—to your project, providing context and structure for automated tools.",
5
5
  "type": "module",
6
6
  "exports": {