ai-readme-mcp 0.1.0 β†’ 0.2.0

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/README.md +28 -49
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -10,20 +10,27 @@
10
10
 
11
11
  AI_README MCP Server is a Model Context Protocol (MCP) server that automatically manages and syncs AI_README.md files across your projects. It enables AI assistants to intelligently read and update relevant context documentation when modifying code.
12
12
 
13
- ## ✨ Features
13
+ ### Why AI_README?
14
+
15
+ When working with AI assistants on code projects, **consistency and quality matter**. This tool helps teams:
14
16
 
15
- ### Available Now
17
+ - **🀝 Standardize AI interactions** - Ensure all team members and AI assistants follow the same coding standards, conventions, and best practices
18
+ - **πŸ“ˆ Improve AI output quality** - By providing clear, structured context, AI generates more accurate and consistent code that matches your project's style
19
+ - **🎯 Maintain consistency across teams** - When multiple developers use AI assistants, AI_README ensures everyone gets the same guidelines and standards
20
+ - **⚑ Save time on onboarding** - New team members and AI assistants instantly understand project conventions without lengthy explanations
21
+ - **πŸ”„ Keep documentation in sync** - AI can automatically update README files as the project evolves, maintaining up-to-date documentation
16
22
 
17
- - πŸ” **Automatic Discovery** - Scan and index all AI_README.md files in your project (Phase 1)
18
- - 🎯 **Smart Context Routing** - Find relevant README content based on file paths (Phase 1)
19
- - πŸ”„ **Update & Sync** - AI can both read and update AI_README files (Phase 2)
20
- - πŸ“¦ **Easy Integration** - Works seamlessly with Claude Code and other MCP clients
21
- - πŸ§ͺ **Well Tested** - 36 unit tests, 100% passing
23
+ Think of it as a **"style guide and context manager for AI"** - ensuring every AI interaction in your project follows your team's standards and produces high-quality, consistent output.
24
+
25
+ ## ✨ Features
22
26
 
23
- ### Coming Soon
27
+ - πŸ” **Automatic Discovery** - Scan and index all AI_README.md files in your project
28
+ - 🎯 **Smart Context Routing** - Find relevant README content based on file paths
29
+ - πŸ”„ **Update & Sync** - AI can both read and update AI_README files
30
+ - βœ… **Validation & Quality** - Ensure README consistency with token limits and structure checks
31
+ - πŸ“ **Template System** - Initialize new AI_README files from templates
32
+ - πŸ“¦ **Easy Integration** - Works seamlessly with Cursor, Claude Code, and other MCP clients
24
33
 
25
- - βœ… **Validation & Health Checks** - Ensure README consistency and integrity (Phase 3)
26
- - 🎬 **Watch Mode** - Auto-sync changes to README files (Phase 4)
27
34
 
28
35
  ## πŸš€ Quick Start
29
36
 
@@ -433,44 +440,16 @@ Update an AI_README.md file with specified operations.
433
440
  }
434
441
  ```
435
442
 
436
- ## πŸ—ΊοΈ Development Roadmap
437
-
438
- ### Phase 0: Initial Setup βœ… COMPLETED
439
- - [x] Project structure
440
- - [x] TypeScript configuration
441
- - [x] Build tooling (tsup)
442
- - [x] Testing setup (Node.js native test runner)
443
- - [x] Basic type definitions
444
-
445
- ### Phase 1: MVP (Core Features) βœ… COMPLETED
446
- - [x] Implement AIReadmeScanner
447
- - [x] Implement ContextRouter
448
- - [x] Create `discover_ai_readmes` tool
449
- - [x] Create `get_context_for_file` tool
450
- - [x] Write comprehensive tests (26 tests, all passing)
451
- - [x] MCP server integration
452
- - [x] Documentation and templates
453
-
454
- ### Phase 2: Update & Sync βœ… COMPLETED
455
- - [x] Implement ReadmeUpdater
456
- - [x] Create `update_ai_readme` tool
457
- - [x] Support 5 operation types (append, prepend, replace, insert-after, insert-before)
458
- - [x] Write comprehensive tests (36 tests total, all passing)
459
-
460
- ### Phase 3: Validation & Quality πŸ“‹ NEXT
461
- - [ ] Implement ReadmeValidator
462
- - [ ] Create `validate_ai_readmes` tool
463
- - [ ] Health check functionality
464
-
465
- ### Phase 4: Advanced Features
466
- - [ ] Watch mode for auto-sync
467
- - [ ] Performance optimization and caching
468
- - [ ] VSCode Extension
469
-
470
- ### Phase 5: Distribution
471
- - [ ] Publish to npm registry
472
- - [ ] Add npx support for easier installation
473
- - [ ] CI/CD pipeline for automated releases
443
+ ## πŸš€ What's Next
444
+
445
+ We're actively working on new features:
446
+
447
+ - **Watch Mode** - Auto-sync changes when AI_README files are modified
448
+ - **Performance Optimization** - Caching and incremental updates
449
+ - **VSCode Extension** - Visual interface for managing AI_README files
450
+ - **CI/CD Integration** - GitHub Actions for automated README validation
451
+
452
+ Want to contribute? Check out our [Contributing Guide](./CONTRIBUTING.md)!
474
453
 
475
454
  ## 🀝 Contributing
476
455
 
@@ -493,4 +472,4 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
493
472
 
494
473
  ---
495
474
 
496
- **Status:** 🚧 In Development | **Version:** 0.1.0 | **Last Updated:** 2025-11-05
475
+ **Status:** βœ… Published | **Version:** 0.2.0 | **Last Updated:** 2025-11-07
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-readme-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "MCP server for managing AI_README.md files in projects",
5
5
  "type": "module",
6
6
  "bin": {