@damn-dev/cli 0.10.0 → 0.13.4
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/package.json +1 -1
- package/runtime/apps/backend/dist/resources/skills/browser-builtin/SKILL.md +238 -0
- package/runtime/apps/backend/dist/resources/skills/obsidian-builtin/SKILL.md +10 -3
- package/runtime/apps/backend/dist/server.cjs +5701 -3626
- package/runtime/apps/backend/prisma/schema.prisma +14 -12
- package/runtime/apps/frontend/dist/assets/{index-CPGJ0mWR.js → index-D9F4ZZia.js} +101 -91
- package/runtime/apps/frontend/dist/assets/index-DzL7epqh.css +1 -0
- package/runtime/apps/frontend/dist/index.html +2 -2
- package/runtime/apps/frontend/dist/sw.js +1 -1
- package/runtime/plugins/damndev/index.js +30 -4
- package/runtime/plugins/damndev/openclaw.plugin.json +1 -1
- package/runtime/apps/frontend/dist/assets/index-BBoDleXo.css +0 -1
|
@@ -69,18 +69,20 @@ model Verification {
|
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
model Workspace {
|
|
72
|
-
id
|
|
73
|
-
name
|
|
74
|
-
ownerId
|
|
75
|
-
owner
|
|
76
|
-
createdAt
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
72
|
+
id String @id @default(cuid())
|
|
73
|
+
name String
|
|
74
|
+
ownerId String
|
|
75
|
+
owner User @relation(fields: [ownerId], references: [id])
|
|
76
|
+
createdAt DateTime @default(now())
|
|
77
|
+
// JSON: { policy: 'all'|'allowlist'|'denylist', allowedDomains: string[], deniedDomains: string[] }
|
|
78
|
+
browserPolicy String?
|
|
79
|
+
agents Agent[]
|
|
80
|
+
channels Channel[]
|
|
81
|
+
skills Skill[]
|
|
82
|
+
tasks Task[]
|
|
83
|
+
missions Mission[]
|
|
84
|
+
members WorkspaceMember[]
|
|
85
|
+
invitations WorkspaceInvitation[]
|
|
84
86
|
}
|
|
85
87
|
|
|
86
88
|
model Agent {
|