Add: Openmemory Augment support (#3015)

This commit is contained in:
Akshat Jain
2025-06-23 20:45:01 +05:30
committed by GitHub
parent 89499aedbe
commit a5ec286fd4
4 changed files with 9 additions and 3 deletions

View File

@@ -14,6 +14,7 @@ const clientTabs = [
{ key: "windsurf", label: "Windsurf", icon: "/images/windsurf.png" },
{ key: "witsy", label: "Witsy", icon: "/images/witsy.png" },
{ key: "enconvo", label: "Enconvo", icon: "/images/enconvo.png" },
{ key: "augment", label: "Augment", icon: "/images/augment.png" },
];
const colorGradientMap: { [key: string]: string } = {
@@ -95,7 +96,7 @@ export const Install = () => {
</div>
<Tabs defaultValue="claude" className="w-full">
<TabsList className="bg-transparent border-b border-zinc-800 rounded-none w-full justify-start gap-0 p-0 grid grid-cols-8">
<TabsList className="bg-transparent border-b border-zinc-800 rounded-none w-full justify-start gap-0 p-0 grid grid-cols-9">
{allTabs.map(({ key, label, icon }) => (
<TabsTrigger
key={key}

View File

@@ -51,6 +51,11 @@ export const constants = {
icon: <Icon source="/images/enconvo.png" />,
iconImage: "/images/enconvo.png",
},
augment: {
name: "Augment",
icon: <Icon source="/images/augment.png" />,
iconImage: "/images/augment.png",
},
default: {
name: "Default",
icon: <BiEdit size={18} className="ml-1" />,

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB