Add image-designer skill, align billing to DeepSeek ×1, and enrich Plaza demo.

Introduce AI image generation with chat shortcut and agent API, improve MindSpace chat-to-page save resolution, and seed Plaza covers with production deploy scripts.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
John
2026-06-16 16:29:19 -07:00
parent 03690ee354
commit 6d99d762da
155 changed files with 2748 additions and 190 deletions
+29
View File
@@ -0,0 +1,29 @@
import { createContext, useContext, type ReactNode } from 'react';
import type { CapabilityMap } from '../types';
type AppSessionContextValue = {
capabilities?: CapabilityMap;
grantedSkills?: string[];
};
const AppSessionContext = createContext<AppSessionContextValue>({});
export function AppSessionProvider({
capabilities,
grantedSkills,
children,
}: {
capabilities?: CapabilityMap;
grantedSkills?: string[];
children: ReactNode;
}) {
return (
<AppSessionContext.Provider value={{ capabilities, grantedSkills }}>
{children}
</AppSessionContext.Provider>
);
}
export function useAppSession() {
return useContext(AppSessionContext);
}