feat(swads): add daily image report workflow

This commit is contained in:
Jeffrey Wu
2026-09-07 11:34:00 +08:00
parent f39f6ac881
commit 5c61371d7e
38 changed files with 2537 additions and 52 deletions
+17 -3
View File
@@ -3,15 +3,29 @@
"version": "0.1.0",
"private": true,
"type": "module",
"exports": { ".": { "types": "./src/index.ts", "development": "./src/index.ts", "import": "./dist/index.js", "default": "./dist/index.js" } },
"scripts": { "typecheck": "tsc --noEmit", "build": "tsc -p tsconfig.json" },
"exports": {
".": {
"types": "./src/index.ts",
"development": "./src/index.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsc -p tsconfig.json"
},
"dependencies": {
"@agent-studio/shared": "workspace:*",
"@earendil-works/pi-ai": "0.84.3",
"@earendil-works/pi-coding-agent": "0.84.3",
"@modelcontextprotocol/sdk": "^1.30.0",
"sharp": "^0.34.5",
"typebox": "1.3.7",
"zod": "^4.1.13"
},
"devDependencies": { "@types/node": "^24.10.1", "typescript": "^5.9.3" }
"devDependencies": {
"@types/node": "^24.10.1",
"typescript": "^5.9.3"
}
}