@liendev/lien 0.8.1 → 0.9.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.
- package/README.md +79 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# Lien
|
|
2
|
+
|
|
3
|
+
> **/ljɛ̃/** — French for "link"
|
|
4
|
+
|
|
5
|
+
**Give AI deep understanding of your codebase through semantic search. 100% local, 100% private.**
|
|
6
|
+
|
|
7
|
+
Lien connects AI coding assistants like Cursor to your codebase through the Model Context Protocol (MCP). Ask questions in natural language, get precise answers from semantic search—all running locally on your machine.
|
|
8
|
+
|
|
9
|
+
📚 **[Full Documentation](https://lien.dev)** | 🚀 **[Getting Started](https://lien.dev/guide/getting-started)** | 🔍 **[How It Works](https://lien.dev/how-it-works)**
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## Features
|
|
14
|
+
|
|
15
|
+
- 🔒 **100% Local & Private** - All code analysis happens on your machine
|
|
16
|
+
- 🚀 **Semantic Search** - Natural language queries: "How does authentication work?"
|
|
17
|
+
- 🎯 **MCP Integration** - Works seamlessly with Cursor and other MCP-compatible tools
|
|
18
|
+
- ⚡ **Fast** - Sub-500ms queries, minutes to index large codebases
|
|
19
|
+
- 🆓 **Free Forever** - No API costs, no subscriptions, no usage limits
|
|
20
|
+
- 📦 **Framework-Aware** - Auto-detects Node.js, Laravel; supports 15+ languages
|
|
21
|
+
- 🏗️ **Monorepo Support** - Index multiple frameworks in one repository
|
|
22
|
+
|
|
23
|
+
## Quick Start
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
# Install
|
|
27
|
+
npm install -g @liendev/lien
|
|
28
|
+
|
|
29
|
+
# Setup in your project
|
|
30
|
+
cd /path/to/your/project
|
|
31
|
+
lien init
|
|
32
|
+
lien index
|
|
33
|
+
|
|
34
|
+
# Configure Cursor - create .cursor/mcp.json
|
|
35
|
+
{
|
|
36
|
+
"mcpServers": {
|
|
37
|
+
"lien": {
|
|
38
|
+
"command": "lien",
|
|
39
|
+
"args": ["serve"]
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
# Restart Cursor and start asking questions!
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
**👉 [Full installation guide](https://lien.dev/guide/installation)**
|
|
48
|
+
|
|
49
|
+
## Documentation
|
|
50
|
+
|
|
51
|
+
- **[Installation](https://lien.dev/guide/installation)** - npm, npx, or local setup
|
|
52
|
+
- **[Getting Started](https://lien.dev/guide/getting-started)** - Step-by-step configuration for Cursor
|
|
53
|
+
- **[Configuration](https://lien.dev/guide/configuration)** - Customize indexing, performance tuning
|
|
54
|
+
- **[CLI Commands](https://lien.dev/guide/cli-commands)** - Full command reference
|
|
55
|
+
- **[MCP Tools](https://lien.dev/guide/mcp-tools)** - API for semantic search tools
|
|
56
|
+
- **[How It Works](https://lien.dev/how-it-works)** - Architecture overview
|
|
57
|
+
|
|
58
|
+
## Supported Languages
|
|
59
|
+
|
|
60
|
+
TypeScript • JavaScript • Vue • Python • PHP • Laravel • Go • Rust • Java • C/C++ • Ruby • Swift • Kotlin • C# • Scala • Markdown
|
|
61
|
+
|
|
62
|
+
**Frameworks:** Node.js, Laravel (more coming soon!)
|
|
63
|
+
|
|
64
|
+
## Contributing
|
|
65
|
+
|
|
66
|
+
Contributions welcome! See **[CONTRIBUTING.md](./CONTRIBUTING.md)** for guidelines.
|
|
67
|
+
|
|
68
|
+
## Support
|
|
69
|
+
|
|
70
|
+
- 🐛 **[Issues](https://github.com/getlien/lien/issues)** - Report bugs or request features
|
|
71
|
+
- 💬 **[Discussions](https://github.com/getlien/lien/discussions)** - Ask questions and share ideas
|
|
72
|
+
|
|
73
|
+
## License
|
|
74
|
+
|
|
75
|
+
MIT © [Alf Henderson](https://github.com/alfhen)
|
|
76
|
+
|
|
77
|
+
---
|
|
78
|
+
|
|
79
|
+
**Made with ❤️ for developers who value privacy and local-first tools.**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@liendev/lien",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.1",
|
|
4
4
|
"description": "Local semantic code search for AI assistants via MCP",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"scripts": {
|
|
32
32
|
"build": "tsup && chmod +x dist/index.js",
|
|
33
33
|
"dev": "tsup --watch",
|
|
34
|
-
"prepublishOnly": "npm run build",
|
|
34
|
+
"prepublishOnly": "npm run build && cp ../../README.md .",
|
|
35
35
|
"typecheck": "tsc --noEmit",
|
|
36
36
|
"test": "vitest run",
|
|
37
37
|
"test:watch": "vitest",
|