OpenAEC-Foundation/OpenAEC-Workspace-Composer

Desktop app (Tauri 2 + SolidJS) to compose Claude Code workspaces with curated skill packages, MCP servers, hooks, commands & CORE-documenten — OpenAEC Foundation

5Stars on the repository
60Mods indexed here, across every type
5mo agoLast push, which is what freshness is scored on
MITLicence, which decides whether bodies are shown

OpenAEC-Foundation/OpenAEC-Workspace-Composer

Skill Claude CodeCodex

Use when creating a new SolidJS project, scaffolding a SolidStart application, or setting up project infrastructure. Prevents misconfigured Vite/TypeScript settings, wrong directory structures, and React-style project patterns. Covers Vite configuration, TypeScript setup, component directory structure, routing, state…

5 5mo ago A 99 tokens original MIT

solid-agents-review

02

OpenAEC-Foundation/OpenAEC-Workspace-Composer

Skill Claude CodeCodex

Use when reviewing generated SolidJS code, validating a SolidJS project, or checking for React pattern contamination. Prevents silent reactivity breaks from incorrect signal access, destructured props, wrong control flow, and store mutation errors. Covers signal access patterns, control flow components, props…

5 5mo ago A 98 tokens original MIT

solid-core-overview

03

OpenAEC-Foundation/OpenAEC-Workspace-Composer

Skill Claude CodeCodex

Use when starting a SolidJS project, checking API availability, or looking up import paths and version compatibility. Prevents using deprecated APIs such as SolidStart 0.x patterns or pre-0.15 router cache function. Covers version matrix for SolidJS 1.x/2.x and SolidStart, import reference, ecosystem package map, and…

5 5mo ago A 103 tokens original MIT

OpenAEC-Foundation/OpenAEC-Workspace-Composer

Skill Claude CodeCodex

Use when reasoning about SolidJS reactivity, debugging tracking issues, or understanding why components run once. Prevents React mental model contamination such as expecting re-renders, virtual DOM diffing, or stale closure patterns. Covers reactive dependency graph, tracking contexts, ownership tree, synchronous…

5 5mo ago A 97 tokens original MIT

OpenAEC-Foundation/OpenAEC-Workspace-Composer

Skill Claude CodeCodex

Use when implementing error boundaries, Suspense loading states, or error recovery in SolidJS components. Prevents uncaught rendering errors, missing fallback UIs, and incorrect ErrorBoundary/Suspense nesting. Covers ErrorBoundary with reset, Suspense for createResource, nested boundaries, caught vs uncaught errors…

5 5mo ago A 97 tokens original MIT

OpenAEC-Foundation/OpenAEC-Workspace-Composer

Skill Claude CodeCodex

Use when reviewing SolidJS code for React anti-patterns or converting React components to SolidJS. Prevents destructured props, useState/useEffect habits, Array.map rendering, and all other React patterns that silently break SolidJS reactivity. Covers all 12+ contamination patterns including props destructuring…

5 5mo ago A 113 tokens original MIT

OpenAEC-Foundation/OpenAEC-Workspace-Composer

Skill Claude CodeCodex

Use when SolidJS reactivity is broken, effects are not firing, or store updates are not reflected in the UI. Prevents lost tracking from destructuring, conditional signal access, async tracking loss, and stale closures. Covers diagnostic flowcharts, solid-devtools debugging, effect tracking issues, store propagation…

5 5mo ago A 104 tokens original MIT

solid-impl-routing

08

OpenAEC-Foundation/OpenAEC-Workspace-Composer

Skill Claude CodeCodex

Use when implementing client-side routing, navigation, or URL parameter handling in SolidJS applications. Prevents incorrect router setup, misused navigation hooks, and non-lazy-loaded route bundles. Covers Router/HashRouter setup, A component, useNavigate, useParams, useSearchParams, useBeforeLeave, lazy loading…

5 5mo ago A 106 tokens original MIT

OpenAEC-Foundation/OpenAEC-Workspace-Composer

Skill Claude CodeCodex

Use when building SolidStart applications with SSR, file-based routing, or server functions. Prevents incorrect 'use server' placement, broken hydration, and misuse of query/createAsync patterns. Covers file-based routing, data loading with query and createAsync, server functions, actions with form integration, SSR…

5 5mo ago A 102 tokens original MIT

OpenAEC-Foundation/OpenAEC-Workspace-Composer

Skill Claude CodeCodex

Use when designing state architecture or choosing between signals, stores, and context in SolidJS. Prevents using createEffect for derived state, capturing signal snapshots, and incorrect store mutation patterns. Covers createSignal vs createStore decision matrix, context providers, createMemo for derived state, form…

5 5mo ago A 97 tokens original MIT

solid-impl-testing

11

OpenAEC-Foundation/OpenAEC-Workspace-Composer

Skill Claude CodeCodex

Use when writing unit or integration tests for SolidJS components, signals, or stores. Prevents missing cleanup calls, incorrect async test patterns, and React Testing Library habits that break SolidJS tests. Covers @solidjs/testing-library render, screen queries, fireEvent, cleanup, async testing, renderHook…

5 5mo ago A 103 tokens original MIT

OpenAEC-Foundation/OpenAEC-Workspace-Composer

Skill Claude CodeCodex

Use when creating components, handling props, working with children, refs, directives, or events in SolidJS. Prevents props destructuring and children access patterns from React that break SolidJS reactivity. Covers Component/ParentComponent/VoidComponent/FlowComponent types, splitProps, mergeProps, children() helper…

5 5mo ago A 112 tokens original MIT

OpenAEC-Foundation/OpenAEC-Workspace-Composer

Skill Claude CodeCodex

Use when sharing state between components, creating providers, or implementing dependency injection in SolidJS. Prevents non-reactive context values and missing Provider errors common when porting React context patterns. Covers createContext, useContext, Provider pattern, reactive context with signals and stores…

5 5mo ago A 92 tokens original MIT

solid-syntax-jsx

14

OpenAEC-Foundation/OpenAEC-Workspace-Composer

Skill Claude CodeCodex

Use when writing JSX templates, rendering lists, conditional rendering, or using control flow components in SolidJS. Prevents ternary/map anti-patterns from React that bypass SolidJS compiled DOM optimizations. Covers Show, For, Index, Switch/Match, Dynamic, Portal, Suspense, JSX compilation model, and namespaced…

5 5mo ago A 102 tokens original MIT

OpenAEC-Foundation/OpenAEC-Workspace-Composer

Skill Claude CodeCodex

Use when creating signals, effects, memos, resources, or managing component lifecycle in SolidJS. Prevents React useState/useEffect anti-patterns that break fine-grained reactivity tracking. Covers createSignal, createEffect, createMemo, createResource, createRenderEffect, createComputed, batch, untrack, on, onMount…

5 5mo ago A 115 tokens original MIT

solid-syntax-stores

16

OpenAEC-Foundation/OpenAEC-Workspace-Composer

Skill Claude CodeCodex

Use when managing complex nested state, updating objects or arrays, or choosing between signals and stores in SolidJS. Prevents direct state mutation and spread-copy patterns that destroy store proxy reactivity. Covers createStore, setStore path syntax, produce, reconcile, unwrap, and createMutable. Keywords…

5 5mo ago A 91 tokens original MIT

OpenAEC-Foundation/OpenAEC-Workspace-Composer

Skill Claude CodeCodex

Use when scaffolding a new Tauri 2 project, setting up initial project structure, or generating boilerplate code. Prevents incomplete scaffolding with missing permission files, unregistered commands, or broken IPC bridges. Covers configured plugins, capability files, Rust commands with TypeScript invoke calls, build…

5 5mo ago A 98 tokens original MIT

tauri-agents-review

18

OpenAEC-Foundation/OpenAEC-Workspace-Composer

Skill Claude CodeCodex

Use when reviewing Tauri 2 code, auditing permissions, or validating a Tauri project before deployment. Prevents shipping apps with missing permissions, unhandled IPC errors, insecure CSP, and unregistered commands. Covers command signature review, permission coverage, state management, error handling, security audit…

5 5mo ago A 93 tokens original MIT

OpenAEC-Foundation/OpenAEC-Workspace-Composer

Skill Claude CodeCodex

Use when creating new Tauri 2 apps, understanding project structure, or reasoning about the component model. Prevents mixing Tauri 1.x architecture assumptions with the v2 multi-webview and capability-based model. Covers Rust backend structure, webview layer, IPC bridge model, process model, project layout, and type…

5 5mo ago A 94 tokens original MIT

tauri-core-config

20

OpenAEC-Foundation/OpenAEC-Workspace-Composer

Skill Claude CodeCodex

Use when editing tauri.conf.json, configuring build options, or setting up platform-specific bundle configuration. Prevents invalid configuration keys and v1 config patterns that silently fail in Tauri 2. Covers build settings, app settings, window configuration, bundle options, plugin configuration, and security…

5 5mo ago A 85 tokens original MIT

tauri-core-runtime

21

OpenAEC-Foundation/OpenAEC-Workspace-Composer

Skill Claude CodeCodex

Use when configuring app initialization, using setup hooks, spawning background tasks, or managing app lifecycle. Prevents misconfigured Builder chains and missing plugin registration that cause silent runtime failures. Covers Builder configuration, setup hook, AppHandle usage, Manager trait, tokio async runtime, and…

5 5mo ago A 90 tokens original MIT

tauri-errors-build

22

OpenAEC-Foundation/OpenAEC-Workspace-Composer

Skill Claude CodeCodex

Use when encountering Tauri 2 build errors, bundler failures, or platform-specific compilation issues. Prevents chasing phantom failures from stale build artifacts and misidentifying the failing build pipeline phase. Covers Cargo compilation failures, bundler errors, code signing failures, Linux dependencies, mobile…

5 5mo ago B 98 tokens original MIT

tauri-errors-ipc

23

OpenAEC-Foundation/OpenAEC-Workspace-Composer

Skill Claude CodeCodex

Use when encountering invoke errors, serialization failures, or IPC-related panics in Tauri 2. Prevents silent type mismatches between Rust and JavaScript and missing Serialize on error types. Covers serialization failures, command not found, argument type mismatches, permission denied, async panics, and thiserror…

5 5mo ago A 94 tokens original MIT

OpenAEC-Foundation/OpenAEC-Workspace-Composer

Skill Claude CodeCodex

Use when encountering permission denied errors, CSP violations, or capability configuration issues in Tauri 2. Prevents confusing core permissions with plugin permissions and missing scope restrictions on sensitive plugins. Covers capability misconfiguration, missing plugin permissions, scope violations, CSP…

5 5mo ago A 82 tokens original MIT