@better-openclaw/core 1.0.12 β†’ 1.0.14

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.
Files changed (75) hide show
  1. package/README.md +70 -0
  2. package/dist/composer.d.mts.map +1 -1
  3. package/dist/composer.mjs +5 -3
  4. package/dist/composer.mjs.map +1 -1
  5. package/dist/generate.d.mts.map +1 -1
  6. package/dist/generate.mjs +11 -0
  7. package/dist/generate.mjs.map +1 -1
  8. package/dist/generators/env.d.mts.map +1 -1
  9. package/dist/generators/env.mjs +21 -1
  10. package/dist/generators/env.mjs.map +1 -1
  11. package/dist/generators/get-shit-done.d.mts +10 -0
  12. package/dist/generators/get-shit-done.d.mts.map +1 -0
  13. package/dist/generators/get-shit-done.mjs +38 -0
  14. package/dist/generators/get-shit-done.mjs.map +1 -0
  15. package/dist/generators/openclaw-json.d.mts +11 -0
  16. package/dist/generators/openclaw-json.d.mts.map +1 -0
  17. package/dist/generators/openclaw-json.mjs +410 -0
  18. package/dist/generators/openclaw-json.mjs.map +1 -0
  19. package/dist/index.d.mts +2 -2
  20. package/dist/{manifest-DSGl8ITO.mjs β†’ manifest-BjK4ALvr.mjs} +49 -1
  21. package/dist/manifest-BjK4ALvr.mjs.map +1 -0
  22. package/dist/resolver.mjs +3 -1
  23. package/dist/resolver.mjs.map +1 -1
  24. package/dist/schema.d.mts +85 -1
  25. package/dist/schema.d.mts.map +1 -1
  26. package/dist/schema.mjs +30 -3
  27. package/dist/schema.mjs.map +1 -1
  28. package/dist/services/definitions/hexstrike.d.mts +7 -0
  29. package/dist/services/definitions/hexstrike.d.mts.map +1 -0
  30. package/dist/services/definitions/hexstrike.mjs +44 -0
  31. package/dist/services/definitions/hexstrike.mjs.map +1 -0
  32. package/dist/services/definitions/index.d.mts +6 -1
  33. package/dist/services/definitions/index.d.mts.map +1 -1
  34. package/dist/services/definitions/index.mjs +12 -2
  35. package/dist/services/definitions/index.mjs.map +1 -1
  36. package/dist/services/definitions/pentagi.d.mts +7 -0
  37. package/dist/services/definitions/pentagi.d.mts.map +1 -0
  38. package/dist/services/definitions/pentagi.mjs +44 -0
  39. package/dist/services/definitions/pentagi.mjs.map +1 -0
  40. package/dist/services/definitions/pentestagent.d.mts +7 -0
  41. package/dist/services/definitions/pentestagent.d.mts.map +1 -0
  42. package/dist/services/definitions/pentestagent.mjs +39 -0
  43. package/dist/services/definitions/pentestagent.mjs.map +1 -0
  44. package/dist/services/definitions/scrapling.d.mts +7 -0
  45. package/dist/services/definitions/scrapling.d.mts.map +1 -0
  46. package/dist/services/definitions/scrapling.mjs +44 -0
  47. package/dist/services/definitions/scrapling.mjs.map +1 -0
  48. package/dist/services/definitions/solidityguard.d.mts +7 -0
  49. package/dist/services/definitions/solidityguard.d.mts.map +1 -0
  50. package/dist/services/definitions/solidityguard.mjs +49 -0
  51. package/dist/services/definitions/solidityguard.mjs.map +1 -0
  52. package/dist/skills/skill-manifest.mjs +1 -1
  53. package/dist/types.d.mts +6 -2
  54. package/dist/types.d.mts.map +1 -1
  55. package/dist/types.mjs +5 -0
  56. package/dist/types.mjs.map +1 -1
  57. package/package.json +1 -1
  58. package/src/composer.ts +12 -3
  59. package/src/generate.ts +15 -0
  60. package/src/generators/env.ts +26 -0
  61. package/src/generators/get-shit-done.ts +43 -0
  62. package/src/generators/openclaw-json.ts +406 -0
  63. package/src/index.ts +2 -0
  64. package/src/resolver.ts +10 -8
  65. package/src/schema.ts +24 -0
  66. package/src/services/definitions/hexstrike.ts +40 -0
  67. package/src/services/definitions/index.ts +15 -0
  68. package/src/services/definitions/pentagi.ts +41 -0
  69. package/src/services/definitions/pentestagent.ts +34 -0
  70. package/src/services/definitions/scrapling.ts +40 -0
  71. package/src/services/definitions/solidityguard.ts +46 -0
  72. package/src/skills/manifest.json +58 -0
  73. package/src/skills/manifest.schema.json +51 -0
  74. package/src/types.ts +7 -0
  75. package/dist/manifest-DSGl8ITO.mjs.map +0 -1
@@ -0,0 +1,40 @@
1
+ import type { ServiceDefinition } from "../../types.js";
2
+
3
+ export const scraplingDefinition: ServiceDefinition = {
4
+ id: "scrapling",
5
+ name: "Scrapling",
6
+ description: "Adaptive Web Scraping framework with anti-bot bypass capabilities and MCP server.",
7
+ category: "browser",
8
+ icon: "πŸ•·οΈ",
9
+
10
+ image: "ghcr.io/d4vinci/scrapling",
11
+ imageTag: "latest",
12
+ ports: [
13
+ {
14
+ host: 8000,
15
+ container: 8000,
16
+ description: "Scrapling MCP Server",
17
+ exposed: true,
18
+ },
19
+ ],
20
+ volumes: [],
21
+ environment: [],
22
+ command: "mcp",
23
+ dependsOn: [],
24
+ restartPolicy: "unless-stopped",
25
+ networks: ["openclaw-network"],
26
+
27
+ skills: [{ skillId: "scrapling-scrape", autoInstall: true }],
28
+ openclawEnvVars: [],
29
+
30
+ docsUrl: "https://scrapling.readthedocs.io",
31
+ tags: ["data", "scraping", "automation", "mcp"],
32
+ maturity: "stable",
33
+
34
+ requires: [],
35
+ recommends: [],
36
+ conflictsWith: [],
37
+
38
+ minMemoryMB: 1024,
39
+ gpuRequired: false,
40
+ };
@@ -0,0 +1,46 @@
1
+ import type { ServiceDefinition } from "../../types.js";
2
+
3
+ export const solidityGuardDefinition: ServiceDefinition = {
4
+ id: "solidityguard",
5
+ name: "SolidityGuard",
6
+ description: "7-Phase Deep Audit Smart Contract Security Auditor for EVM/Solidity.",
7
+ category: "security",
8
+ icon: "πŸ›‘οΈ",
9
+
10
+ image: "altresearch/solidityguard", // Presumed standard dockerhub naming format, usually ghcr.io or dockerhub
11
+ imageTag: "latest",
12
+ ports: [
13
+ {
14
+ host: 8000,
15
+ container: 8000,
16
+ description: "SolidityGuard Web Dashboard",
17
+ exposed: true,
18
+ },
19
+ ],
20
+ volumes: [
21
+ {
22
+ name: "./contracts",
23
+ containerPath: "/audit",
24
+ description: "Mounts local contracts for CLI deep auditing.",
25
+ },
26
+ ],
27
+ environment: [],
28
+ command: "web", // Presumed default startup command for the web UI if no CLI args are given
29
+ dependsOn: [],
30
+ restartPolicy: "unless-stopped",
31
+ networks: ["openclaw-network"],
32
+
33
+ skills: [{ skillId: "solidityguard-audit", autoInstall: true }],
34
+ openclawEnvVars: [],
35
+
36
+ docsUrl: "https://solidityguard.org",
37
+ tags: ["security", "web3", "solidity", "evm", "audit"],
38
+ maturity: "stable",
39
+
40
+ requires: [],
41
+ recommends: [],
42
+ conflictsWith: [],
43
+
44
+ minMemoryMB: 2048,
45
+ gpuRequired: false,
46
+ };
@@ -1328,6 +1328,64 @@
1328
1328
  "path": "aura-asset-images/SKILL.md",
1329
1329
  "emoji": "πŸ“·",
1330
1330
  "services": []
1331
+ },
1332
+ {
1333
+ "id": "tinyfish-cookbook",
1334
+ "path": "tinyfish-cookbook/SKILL.md",
1335
+ "emoji": "🐟",
1336
+ "services": []
1337
+ },
1338
+ {
1339
+ "id": "browser-learn",
1340
+ "path": "browser-learn/SKILL.md",
1341
+ "emoji": "🧠",
1342
+ "services": []
1343
+ },
1344
+ {
1345
+ "id": "scrapling-scrape",
1346
+ "path": "scrapling-scrape/SKILL.md",
1347
+ "emoji": "πŸ•ΈοΈ",
1348
+ "services": [
1349
+ "scrapling"
1350
+ ]
1351
+ },
1352
+ {
1353
+ "id": "youtube-growth",
1354
+ "path": "youtube-growth/SKILL.md",
1355
+ "emoji": "πŸ“ˆ",
1356
+ "services": []
1357
+ },
1358
+ {
1359
+ "id": "hexstrike-mcp",
1360
+ "path": "hexstrike-mcp/SKILL.md",
1361
+ "emoji": "βš”οΈ",
1362
+ "services": [
1363
+ "hexstrike"
1364
+ ]
1365
+ },
1366
+ {
1367
+ "id": "solidityguard-audit",
1368
+ "path": "solidityguard-audit/SKILL.md",
1369
+ "emoji": "πŸ›‘οΈ",
1370
+ "services": [
1371
+ "solidityguard"
1372
+ ]
1373
+ },
1374
+ {
1375
+ "id": "pentagi-orchestrator",
1376
+ "path": "pentagi-orchestrator/SKILL.md",
1377
+ "emoji": "πŸ•΅οΈ",
1378
+ "services": [
1379
+ "pentagi"
1380
+ ]
1381
+ },
1382
+ {
1383
+ "id": "pentestagent-runner",
1384
+ "path": "pentestagent-runner/SKILL.md",
1385
+ "emoji": "πŸ”",
1386
+ "services": [
1387
+ "pentestagent"
1388
+ ]
1331
1389
  }
1332
1390
  ]
1333
1391
  }
@@ -0,0 +1,51 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "title": "OpenClaw Skills Manifest",
4
+ "description": "Validation schema for the Better-OpenClaw skill registry",
5
+ "type": "object",
6
+ "required": [
7
+ "version",
8
+ "skills"
9
+ ],
10
+ "properties": {
11
+ "version": {
12
+ "type": "string"
13
+ },
14
+ "description": {
15
+ "type": "string"
16
+ },
17
+ "skills": {
18
+ "type": "array",
19
+ "items": {
20
+ "type": "object",
21
+ "required": [
22
+ "id",
23
+ "path",
24
+ "emoji",
25
+ "services"
26
+ ],
27
+ "properties": {
28
+ "id": {
29
+ "type": "string",
30
+ "description": "Unique identifier for the skill"
31
+ },
32
+ "path": {
33
+ "type": "string",
34
+ "description": "Relative path to the SKILL.md file"
35
+ },
36
+ "emoji": {
37
+ "type": "string",
38
+ "description": "Emoji icon representing the skill"
39
+ },
40
+ "services": {
41
+ "type": "array",
42
+ "description": "List of service IDs required by this skill",
43
+ "items": {
44
+ "type": "string"
45
+ }
46
+ }
47
+ }
48
+ }
49
+ }
50
+ }
51
+ }
package/src/types.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  import type { z } from "zod";
2
2
  import type {
3
3
  AddedDependencySchema,
4
+ AiProviderSchema,
4
5
  ApiErrorSchema,
5
6
  ComposeOptionsSchema,
6
7
  DeploymentTargetSchema,
@@ -9,6 +10,7 @@ import type {
9
10
  EnvVariableSchema,
10
11
  ErrorSchema,
11
12
  GenerationInputSchema,
13
+ GsdRuntimeSchema,
12
14
  HealthCheckSchema,
13
15
  MaturitySchema,
14
16
  NativePlatformSchema,
@@ -34,6 +36,8 @@ import type {
34
36
 
35
37
  // ─── Inferred Types ─────────────────────────────────────────────────────────
36
38
 
39
+ export type AiProvider = z.infer<typeof AiProviderSchema>;
40
+ export type GsdRuntime = z.infer<typeof GsdRuntimeSchema>;
37
41
  export type ServiceCategory = z.infer<typeof ServiceCategorySchema>;
38
42
  export type Maturity = z.infer<typeof MaturitySchema>;
39
43
  export type Platform = z.infer<typeof PlatformSchema>;
@@ -77,6 +81,8 @@ export type ApiError = z.infer<typeof ApiErrorSchema>;
77
81
  export interface ResolverInput {
78
82
  services: string[];
79
83
  skillPacks: string[];
84
+ aiProviders?: AiProvider[];
85
+ gsdRuntimes?: GsdRuntime[];
80
86
  proxy?: ProxyType;
81
87
  gpu?: boolean;
82
88
  platform?: Platform;
@@ -126,4 +132,5 @@ export const SERVICE_CATEGORIES: CategoryInfo[] = [
126
132
  { id: "communication", name: "Notifications", icon: "πŸ””" },
127
133
  { id: "desktop", name: "Desktop Environment", icon: "πŸ–₯️" },
128
134
  { id: "streaming", name: "Streaming & Relay", icon: "πŸ“Ί" },
135
+ { id: "security", name: "Security & Pentesting", icon: "πŸ›‘οΈ" },
129
136
  ];
@@ -1 +0,0 @@
1
- {"version":3,"file":"manifest-DSGl8ITO.mjs","names":[],"sources":["../src/skills/manifest.json"],"sourcesContent":[""],"mappings":""}