specvector 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.
- package/README.md +30 -0
- package/package.json +35 -0
package/README.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# SpecVector
|
|
2
|
+
|
|
3
|
+
> Context-aware AI code review using Model Context Protocol (MCP)
|
|
4
|
+
|
|
5
|
+
🚧 **Coming Soon** — This package is under active development.
|
|
6
|
+
|
|
7
|
+
## What is SpecVector?
|
|
8
|
+
|
|
9
|
+
SpecVector is an open-source AI code review tool that connects to your internal systems (Linear, ADRs, database schemas) to provide context-aware feedback on pull requests.
|
|
10
|
+
|
|
11
|
+
Unlike generic AI review tools that only see the diff, SpecVector understands:
|
|
12
|
+
|
|
13
|
+
- What ticket the PR is for
|
|
14
|
+
- Your architectural decisions
|
|
15
|
+
- Your database schema
|
|
16
|
+
- Your coding standards
|
|
17
|
+
|
|
18
|
+
## Installation
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
npx specvector --help
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Documentation
|
|
25
|
+
|
|
26
|
+
Full documentation coming soon at [github.com/nedlink/specvector](https://github.com/nedlink/specvector)
|
|
27
|
+
|
|
28
|
+
## License
|
|
29
|
+
|
|
30
|
+
MIT
|
package/package.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "specvector",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Context-aware AI code review using Model Context Protocol (MCP)",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "src/index.ts",
|
|
7
|
+
"bin": {
|
|
8
|
+
"specvector": "src/index.ts"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"start": "bun src/index.ts",
|
|
12
|
+
"test": "bun test"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"code-review",
|
|
16
|
+
"ai",
|
|
17
|
+
"claude",
|
|
18
|
+
"mcp",
|
|
19
|
+
"model-context-protocol",
|
|
20
|
+
"github-actions",
|
|
21
|
+
"linear",
|
|
22
|
+
"anthropic"
|
|
23
|
+
],
|
|
24
|
+
"author": "Dragos",
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "https://github.com/nedlink/specvector"
|
|
29
|
+
},
|
|
30
|
+
"engines": {
|
|
31
|
+
"node": ">=20.0.0"
|
|
32
|
+
},
|
|
33
|
+
"dependencies": {},
|
|
34
|
+
"devDependencies": {}
|
|
35
|
+
}
|