wave-code 0.0.3 → 0.0.4
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.
|
@@ -18,7 +18,7 @@ export const MemoryDisplay = ({ block }) => {
|
|
|
18
18
|
return `Memory saved to ${storagePath || "user-memory.md"}`;
|
|
19
19
|
}
|
|
20
20
|
else {
|
|
21
|
-
return `Memory saved to ${storagePath || "
|
|
21
|
+
return `Memory saved to ${storagePath || "AGENTS.md"}`;
|
|
22
22
|
}
|
|
23
23
|
};
|
|
24
24
|
return (_jsxs(Box, { flexDirection: "column", children: [_jsxs(Box, { children: [_jsxs(Text, { color: getStatusColor(), children: [getStatusIcon(), " "] }), _jsx(Text, { color: getStatusColor(), children: getStatusText() })] }), content && (_jsx(Box, { marginTop: 1, paddingLeft: 2, children: _jsx(Box, { borderLeft: true, borderColor: isSuccess ? "green" : "red", paddingLeft: 1, children: _jsx(Text, { color: "gray", children: content }) }) })), isSuccess && (_jsx(Box, { paddingLeft: 2, marginTop: 1, children: _jsx(Text, { color: "yellow", dimColor: true, children: getStorageText() }) }))] }));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wave-code",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "CLI-based code assistant powered by AI, built with React and Ink",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"yargs": "^17.7.2",
|
|
30
30
|
"diff": "^8.0.2",
|
|
31
31
|
"glob": "^11.0.3",
|
|
32
|
-
"wave-agent-sdk": "0.0.
|
|
32
|
+
"wave-agent-sdk": "0.0.4"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@types/react": "^19.1.8",
|
|
@@ -27,7 +27,7 @@ export const MemoryDisplay: React.FC<MemoryDisplayProps> = ({ block }) => {
|
|
|
27
27
|
if (memoryType === "user") {
|
|
28
28
|
return `Memory saved to ${storagePath || "user-memory.md"}`;
|
|
29
29
|
} else {
|
|
30
|
-
return `Memory saved to ${storagePath || "
|
|
30
|
+
return `Memory saved to ${storagePath || "AGENTS.md"}`;
|
|
31
31
|
}
|
|
32
32
|
};
|
|
33
33
|
|
|
@@ -18,7 +18,7 @@ export const MemoryTypeSelector: React.FC<MemoryTypeSelectorProps> = ({
|
|
|
18
18
|
{
|
|
19
19
|
type: "project" as const,
|
|
20
20
|
label: "Project Memory",
|
|
21
|
-
description: "Save to current project (
|
|
21
|
+
description: "Save to current project (AGENTS.md)",
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
24
|
type: "user" as const,
|