@iamsyr/agentmind 0.1.0 → 0.1.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/CHANGELOG.md +1 -1
- package/LICENSE +1 -1
- package/README.md +9 -9
- package/RELEASING.md +3 -3
- package/package.json +10 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
## 0.1.0
|
|
4
4
|
|
|
5
|
-
- First public npm-ready release of
|
|
5
|
+
- First public npm-ready release of `@iamsyr/agentmind`.
|
|
6
6
|
- Node 22+ CLI with scan, hooks, MCP server, and context sync commands.
|
|
7
7
|
- Node-based generated hooks for Claude and Codex.
|
|
8
8
|
- CI, smoke checks, and integration coverage for hooks, MCP serve, and JSONL import safety.
|
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
# agentmind
|
|
1
|
+
# @iamsyr/agentmind
|
|
2
2
|
|
|
3
3
|
**Intelligent context routing for AI coding agents.**
|
|
4
4
|
|
|
5
|
-
[](https://www.npmjs.com/package/agentmind)
|
|
6
|
-
[](https://nodejs.org)
|
|
5
|
+
[](https://www.npmjs.com/package/@iamsyr/agentmind)
|
|
6
|
+
[](https://nodejs.org)
|
|
7
7
|
[](https://opensource.org/licenses/MIT)
|
|
8
8
|
|
|
9
9
|
---
|
|
@@ -32,10 +32,10 @@ The result: agents understand your project faster, commit fewer bugs, and coordi
|
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
34
|
# Global CLI
|
|
35
|
-
npm install -g agentmind
|
|
35
|
+
npm install -g @iamsyr/agentmind
|
|
36
36
|
|
|
37
37
|
# Or as a local dev dependency
|
|
38
|
-
npm install --save-dev agentmind
|
|
38
|
+
npm install --save-dev @iamsyr/agentmind
|
|
39
39
|
```
|
|
40
40
|
|
|
41
41
|
**Requirements:** Node.js 22+ and native module `better-sqlite3`.
|
|
@@ -43,8 +43,8 @@ npm install --save-dev agentmind
|
|
|
43
43
|
### Run from source
|
|
44
44
|
|
|
45
45
|
```bash
|
|
46
|
-
git clone https://github.com/
|
|
47
|
-
cd
|
|
46
|
+
git clone https://github.com/doanbactam/agentlayer.git
|
|
47
|
+
cd agentlayer
|
|
48
48
|
npm install
|
|
49
49
|
npm run build
|
|
50
50
|
node dist/cli/index.js --help
|
|
@@ -307,7 +307,7 @@ import {
|
|
|
307
307
|
classify,
|
|
308
308
|
detectPatterns,
|
|
309
309
|
buildGraph,
|
|
310
|
-
} from "agentmind"
|
|
310
|
+
} from "@iamsyr/agentmind"
|
|
311
311
|
|
|
312
312
|
// Types
|
|
313
313
|
import type {
|
|
@@ -325,7 +325,7 @@ import type {
|
|
|
325
325
|
Rule,
|
|
326
326
|
ScanResult,
|
|
327
327
|
StoreHealth,
|
|
328
|
-
} from "agentmind"
|
|
328
|
+
} from "@iamsyr/agentmind"
|
|
329
329
|
|
|
330
330
|
// Initialize store
|
|
331
331
|
const store = new ContextStore("/path/to/project")
|
package/RELEASING.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Releasing agentmind
|
|
1
|
+
# Releasing @iamsyr/agentmind
|
|
2
2
|
|
|
3
3
|
## Preconditions
|
|
4
4
|
|
|
@@ -29,7 +29,7 @@ This runs:
|
|
|
29
29
|
5. Publish:
|
|
30
30
|
|
|
31
31
|
```bash
|
|
32
|
-
npm publish
|
|
32
|
+
npm publish --access public
|
|
33
33
|
```
|
|
34
34
|
|
|
35
35
|
## Post-release verification
|
|
@@ -37,6 +37,6 @@ npm publish
|
|
|
37
37
|
Verify a clean install works:
|
|
38
38
|
|
|
39
39
|
```bash
|
|
40
|
-
npm install -g agentmind
|
|
40
|
+
npm install -g @iamsyr/agentmind
|
|
41
41
|
agentmind --help
|
|
42
42
|
```
|
package/package.json
CHANGED
|
@@ -1,9 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iamsyr/agentmind",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Intelligent context routing for AI coding agents",
|
|
5
5
|
"license": "MIT",
|
|
6
|
+
"author": "iamsyr",
|
|
6
7
|
"type": "module",
|
|
8
|
+
"homepage": "https://github.com/doanbactam/agentlayer#readme",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/doanbactam/agentlayer.git"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/doanbactam/agentlayer/issues"
|
|
15
|
+
},
|
|
7
16
|
"main": "./dist/index.js",
|
|
8
17
|
"types": "./dist/index.d.ts",
|
|
9
18
|
"exports": {
|