@aman_asmuei/aman-agent 0.22.0 → 0.23.0
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/dist/index.js +2 -2
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -3968,7 +3968,7 @@ function handleReset(action) {
|
|
|
3968
3968
|
function handleUpdate() {
|
|
3969
3969
|
try {
|
|
3970
3970
|
const current = execFileSync3("npm", ["view", "@aman_asmuei/aman-agent", "version"], { encoding: "utf-8" }).trim();
|
|
3971
|
-
const local = true ? "0.
|
|
3971
|
+
const local = true ? "0.23.0" : "unknown";
|
|
3972
3972
|
if (current === local) {
|
|
3973
3973
|
return { handled: true, output: `${pc5.green("Up to date")} \u2014 v${local}` };
|
|
3974
3974
|
}
|
|
@@ -6423,7 +6423,7 @@ function bootstrapEcosystem() {
|
|
|
6423
6423
|
return true;
|
|
6424
6424
|
}
|
|
6425
6425
|
var program = new Command();
|
|
6426
|
-
program.name("aman-agent").description("Your AI companion, running locally").version("0.
|
|
6426
|
+
program.name("aman-agent").description("Your AI companion, running locally").version("0.23.0").option("--model <model>", "Override LLM model").option("--budget <tokens>", "Token budget for system prompt (default: 8000)", parseInt).option("--profile <name>", "Use a specific agent profile (e.g., coder, writer, researcher)").action(async (options) => {
|
|
6427
6427
|
p3.intro(pc8.bold("aman agent") + pc8.dim(" \u2014 your AI companion"));
|
|
6428
6428
|
let config = loadConfig();
|
|
6429
6429
|
if (!config) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aman_asmuei/aman-agent",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.23.0",
|
|
4
4
|
"description": "Your AI companion, running locally — powered by the aman ecosystem",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"@aman_asmuei/aman-core": "^0.2.0",
|
|
24
24
|
"@aman_asmuei/acore-core": "^0.1.0",
|
|
25
25
|
"@aman_asmuei/arules-core": "^0.1.0",
|
|
26
|
-
"@aman_asmuei/amem-core": "^0.
|
|
26
|
+
"@aman_asmuei/amem-core": "^0.4.2",
|
|
27
27
|
"@anthropic-ai/sdk": "^0.39.0",
|
|
28
28
|
"@clack/prompts": "^0.9.1",
|
|
29
29
|
"@modelcontextprotocol/sdk": "^1.27.1",
|