agent-enderun 0.3.0 → 0.3.1
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/ENDERUN.md +1 -1
- package/README.md +1 -1
- package/package.json +4 -2
- package/packages/framework-mcp/package.json +1 -1
- package/packages/framework-mcp/src/index.ts +1 -1
- package/packages/framework-mcp/src/utils.ts +1 -1
- package/packages/shared-types/package.json +1 -1
- package/panda.config.ts +20 -0
- package/tsconfig.json +16 -0
package/ENDERUN.md
CHANGED
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-enderun",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "The Supreme AI Governance & Orchestration Framework for Enterprise Development",
|
|
5
5
|
"author": "Yusuf BEKAR",
|
|
6
6
|
"license": "MIT",
|
|
@@ -47,7 +47,9 @@
|
|
|
47
47
|
"README.md",
|
|
48
48
|
"LICENSE",
|
|
49
49
|
"mcp.json",
|
|
50
|
-
".env.example"
|
|
50
|
+
".env.example",
|
|
51
|
+
"tsconfig.json",
|
|
52
|
+
"panda.config.ts"
|
|
51
53
|
],
|
|
52
54
|
"scripts": {
|
|
53
55
|
"enderun:build": "npm run build --workspaces --if-present",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import path from "path";
|
|
2
2
|
import fs from "fs";
|
|
3
3
|
|
|
4
|
-
export const FRAMEWORK_VERSION = "0.3.
|
|
4
|
+
export const FRAMEWORK_VERSION = "0.3.1";
|
|
5
5
|
|
|
6
6
|
export function getFrameworkDir(projectRoot: string): string {
|
|
7
7
|
const adapters = [".gemini", ".claude", ".cursor", ".codex", ".enderun"];
|
package/panda.config.ts
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { defineConfig } from "@pandacss/dev"
|
|
2
|
+
|
|
3
|
+
export default defineConfig({
|
|
4
|
+
// Whether to use css reset
|
|
5
|
+
preflight: true,
|
|
6
|
+
|
|
7
|
+
// Where to look for your css declarations
|
|
8
|
+
include: ["./src/**/*.{js,jsx,ts,tsx}", "./pages/**/*.{js,jsx,ts,tsx}"],
|
|
9
|
+
|
|
10
|
+
// Files to exclude
|
|
11
|
+
exclude: [],
|
|
12
|
+
|
|
13
|
+
// Useful for theme customization
|
|
14
|
+
theme: {
|
|
15
|
+
extend: {}
|
|
16
|
+
},
|
|
17
|
+
|
|
18
|
+
// The output directory for your css system
|
|
19
|
+
outdir: "styled-system",
|
|
20
|
+
})
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ESNext",
|
|
4
|
+
"module": "NodeNext",
|
|
5
|
+
"moduleResolution": "NodeNext",
|
|
6
|
+
"lib": ["ESNext"],
|
|
7
|
+
"strict": true,
|
|
8
|
+
"declaration": true,
|
|
9
|
+
"sourceMap": true,
|
|
10
|
+
"esModuleInterop": true,
|
|
11
|
+
"skipLibCheck": true,
|
|
12
|
+
"forceConsistentCasingInFileNames": true,
|
|
13
|
+
"outDir": "dist"
|
|
14
|
+
},
|
|
15
|
+
"exclude": ["node_modules", "dist"]
|
|
16
|
+
}
|