@aman_asmuei/aman-agent 0.33.2 → 0.33.3
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 +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7083,7 +7083,7 @@ function handleReset(action) {
|
|
|
7083
7083
|
function handleUpdate() {
|
|
7084
7084
|
try {
|
|
7085
7085
|
const current = execFileSync3("npm", ["view", "@aman_asmuei/aman-agent", "version"], { encoding: "utf-8" }).trim();
|
|
7086
|
-
const local = true ? "0.33.
|
|
7086
|
+
const local = true ? "0.33.3" : "unknown";
|
|
7087
7087
|
if (current === local) {
|
|
7088
7088
|
return { handled: true, output: `${pc6.green("Up to date")} \u2014 v${local}` };
|
|
7089
7089
|
}
|
|
@@ -10067,7 +10067,7 @@ var Inbox = class {
|
|
|
10067
10067
|
// package.json
|
|
10068
10068
|
var package_default = {
|
|
10069
10069
|
name: "@aman_asmuei/aman-agent",
|
|
10070
|
-
version: "0.33.
|
|
10070
|
+
version: "0.33.3",
|
|
10071
10071
|
description: "Your AI companion, running locally \u2014 powered by the aman ecosystem",
|
|
10072
10072
|
type: "module",
|
|
10073
10073
|
engines: {
|
|
@@ -10434,7 +10434,7 @@ function bootstrapEcosystem() {
|
|
|
10434
10434
|
return true;
|
|
10435
10435
|
}
|
|
10436
10436
|
var program = new Command();
|
|
10437
|
-
program.name("aman-agent").description("Your AI companion, running locally").version("0.33.
|
|
10437
|
+
program.name("aman-agent").description("Your AI companion, running locally").version("0.33.3").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) => {
|
|
10438
10438
|
p4.intro(pc9.bold("aman agent") + pc9.dim(" \u2014 your AI companion"));
|
|
10439
10439
|
let config = loadConfig();
|
|
10440
10440
|
if (!config) {
|