@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 CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## 0.1.0
4
4
 
5
- - First public npm-ready release of `agentmind`.
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
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026
3
+ Copyright (c) 2026 iamsyr
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
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
- [![npm version](https://img.shields.io/npm/v/agentmind.svg)](https://www.npmjs.com/package/agentmind)
6
- [![Node.js Version](https://img.shields.io/node/v/agentmind.svg)](https://nodejs.org)
5
+ [![npm version](https://img.shields.io/npm/v/@iamsyr/agentmind.svg)](https://www.npmjs.com/package/@iamsyr/agentmind)
6
+ [![Node.js Version](https://img.shields.io/node/v/@iamsyr/agentmind.svg)](https://nodejs.org)
7
7
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](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/your-org/agentmind.git
47
- cd agentmind
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.0",
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": {