@dmsdc-ai/aigentry-deliberation 0.0.41 → 0.0.43
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/lib/entitlement.js +10 -13
- package/package.json +1 -1
package/lib/entitlement.js
CHANGED
|
@@ -4,23 +4,20 @@ import os from "os";
|
|
|
4
4
|
|
|
5
5
|
const LICENSE_PATH = path.join(os.homedir(), ".aigentry", "license.json");
|
|
6
6
|
|
|
7
|
-
// Feature → tier mapping
|
|
7
|
+
// Feature → tier mapping (all features available to all tiers — open source)
|
|
8
8
|
const FEATURE_TIERS = {
|
|
9
9
|
"deliberation.core": ["free", "pro", "team"],
|
|
10
|
-
"deliberation.multi_session": ["pro", "team"],
|
|
11
|
-
"deliberation.browser_integration": ["pro", "team"],
|
|
12
|
-
"deliberation.auto_run": ["pro", "team"],
|
|
13
|
-
"deliberation.remote": ["pro", "team"],
|
|
14
|
-
"deliberation.decision_engine": ["pro", "team"],
|
|
15
|
-
"deliberation.code_review": ["pro", "team"],
|
|
16
|
-
"deliberation.unlimited_speakers": ["pro", "team"],
|
|
10
|
+
"deliberation.multi_session": ["free", "pro", "team"],
|
|
11
|
+
"deliberation.browser_integration": ["free", "pro", "team"],
|
|
12
|
+
"deliberation.auto_run": ["free", "pro", "team"],
|
|
13
|
+
"deliberation.remote": ["free", "pro", "team"],
|
|
14
|
+
"deliberation.decision_engine": ["free", "pro", "team"],
|
|
15
|
+
"deliberation.code_review": ["free", "pro", "team"],
|
|
16
|
+
"deliberation.unlimited_speakers": ["free", "pro", "team"],
|
|
17
17
|
};
|
|
18
18
|
|
|
19
|
-
// Free tier limits
|
|
20
|
-
const FREE_LIMITS = {
|
|
21
|
-
"deliberation.multi_session": 1,
|
|
22
|
-
"deliberation.unlimited_speakers": 3,
|
|
23
|
-
};
|
|
19
|
+
// Free tier limits (no limits — open source)
|
|
20
|
+
const FREE_LIMITS = {};
|
|
24
21
|
|
|
25
22
|
// Tool → feature mapping
|
|
26
23
|
const TOOL_FEATURE_MAP = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dmsdc-ai/aigentry-deliberation",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.43",
|
|
4
4
|
"description": "MCP server for structured multi-AI discussions — deliberate across Claude, GPT, Gemini and more before committing to decisions",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|