@aiassesstech/sam 0.1.1 → 0.2.0
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/agent/AGENTS.md +228 -0
- package/agent/BKUP/AGENTS.md.bkup +223 -0
- package/agent/BKUP/IDENTITY.md.bkup +13 -0
- package/agent/BKUP/SOUL.md.bkup +132 -0
- package/agent/IDENTITY.md +13 -0
- package/agent/SOUL.md +132 -0
- package/dist/cli/bin.d.ts +8 -0
- package/dist/cli/bin.d.ts.map +1 -0
- package/dist/cli/bin.js +12 -0
- package/dist/cli/bin.js.map +1 -0
- package/dist/cli/runner.d.ts +10 -0
- package/dist/cli/runner.d.ts.map +1 -0
- package/dist/cli/runner.js +67 -0
- package/dist/cli/runner.js.map +1 -0
- package/dist/cli/setup.d.ts +28 -0
- package/dist/cli/setup.d.ts.map +1 -0
- package/dist/cli/setup.js +291 -0
- package/dist/cli/setup.js.map +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/pipeline/pipeline-manager.d.ts +34 -0
- package/dist/pipeline/pipeline-manager.d.ts.map +1 -0
- package/dist/pipeline/pipeline-manager.js +186 -0
- package/dist/pipeline/pipeline-manager.js.map +1 -0
- package/dist/pipeline/pipeline-store.d.ts +18 -0
- package/dist/pipeline/pipeline-store.d.ts.map +1 -0
- package/dist/pipeline/pipeline-store.js +70 -0
- package/dist/pipeline/pipeline-store.js.map +1 -0
- package/dist/pipeline/types.d.ts +73 -0
- package/dist/pipeline/types.d.ts.map +1 -0
- package/dist/pipeline/types.js +30 -0
- package/dist/pipeline/types.js.map +1 -0
- package/dist/plugin.d.ts +19 -10
- package/dist/plugin.d.ts.map +1 -1
- package/dist/plugin.js +153 -13
- package/dist/plugin.js.map +1 -1
- package/dist/tools/sam-pipeline.d.ts +35 -0
- package/dist/tools/sam-pipeline.d.ts.map +1 -0
- package/dist/tools/sam-pipeline.js +72 -0
- package/dist/tools/sam-pipeline.js.map +1 -0
- package/dist/tools/sam-report.d.ts +36 -0
- package/dist/tools/sam-report.d.ts.map +1 -0
- package/dist/tools/sam-report.js +174 -0
- package/dist/tools/sam-report.js.map +1 -0
- package/dist/tools/sam-request.d.ts +55 -0
- package/dist/tools/sam-request.d.ts.map +1 -0
- package/dist/tools/sam-request.js +91 -0
- package/dist/tools/sam-request.js.map +1 -0
- package/dist/tools/sam-status.d.ts +29 -0
- package/dist/tools/sam-status.d.ts.map +1 -0
- package/dist/tools/sam-status.js +42 -0
- package/dist/tools/sam-status.js.map +1 -0
- package/openclaw.plugin.json +39 -3
- package/package.json +20 -7
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* sam_request — Create, update, or close Engineering Requests
|
|
3
|
+
*
|
|
4
|
+
* Side effects: writes memory files (when MemoryWriter available),
|
|
5
|
+
* sends fleet-bus task/status (when fleet-bus available).
|
|
6
|
+
*/
|
|
7
|
+
export function createRequestTool(pipeline) {
|
|
8
|
+
return {
|
|
9
|
+
name: 'sam_request',
|
|
10
|
+
description: 'Create, update, or close Engineering Requests in the pipeline. ' +
|
|
11
|
+
'Create: requires description and requester. ' +
|
|
12
|
+
'Update: requires er_id and at least one of stage, blocker, or notes. ' +
|
|
13
|
+
'Close: requires er_id (marks as DELIVERED).',
|
|
14
|
+
parameters: {
|
|
15
|
+
type: 'object',
|
|
16
|
+
properties: {
|
|
17
|
+
action: {
|
|
18
|
+
type: 'string',
|
|
19
|
+
enum: ['create', 'update', 'close'],
|
|
20
|
+
description: 'Action: create a new ER, update an existing ER, or close (deliver) an ER',
|
|
21
|
+
},
|
|
22
|
+
er_id: {
|
|
23
|
+
type: 'string',
|
|
24
|
+
description: 'Engineering Request ID (required for update and close, e.g. ER-2026-001)',
|
|
25
|
+
},
|
|
26
|
+
description: {
|
|
27
|
+
type: 'string',
|
|
28
|
+
description: 'What needs to be built (required for create)',
|
|
29
|
+
},
|
|
30
|
+
requester: {
|
|
31
|
+
type: 'string',
|
|
32
|
+
description: 'Who is requesting the work (required for create)',
|
|
33
|
+
},
|
|
34
|
+
stage: {
|
|
35
|
+
type: 'string',
|
|
36
|
+
enum: ['INTAKE', 'ANALYSIS', 'BUILD', 'SELF-REVIEW', 'ARCHIE-REVIEW', 'DELIVERED'],
|
|
37
|
+
description: 'New pipeline stage (for update)',
|
|
38
|
+
},
|
|
39
|
+
blocker: {
|
|
40
|
+
type: 'string',
|
|
41
|
+
description: 'Set blocker reason (for update). Empty string to unblock.',
|
|
42
|
+
},
|
|
43
|
+
notes: {
|
|
44
|
+
type: 'string',
|
|
45
|
+
description: 'Add a note to the ER timeline',
|
|
46
|
+
},
|
|
47
|
+
},
|
|
48
|
+
required: ['action'],
|
|
49
|
+
},
|
|
50
|
+
async execute(_toolCallId, params) {
|
|
51
|
+
try {
|
|
52
|
+
const action = {
|
|
53
|
+
action: params.action,
|
|
54
|
+
er_id: params.er_id,
|
|
55
|
+
description: params.description,
|
|
56
|
+
requester: params.requester,
|
|
57
|
+
stage: params.stage,
|
|
58
|
+
blocker: params.blocker,
|
|
59
|
+
notes: params.notes,
|
|
60
|
+
};
|
|
61
|
+
const result = await pipeline.handleRequest(action);
|
|
62
|
+
return {
|
|
63
|
+
content: [{
|
|
64
|
+
type: 'text',
|
|
65
|
+
text: JSON.stringify({
|
|
66
|
+
success: result.success,
|
|
67
|
+
message: result.message,
|
|
68
|
+
...(result.er ? {
|
|
69
|
+
er: {
|
|
70
|
+
id: result.er.id,
|
|
71
|
+
stage: result.er.stage,
|
|
72
|
+
blocked: result.er.blocked,
|
|
73
|
+
buildAttempts: result.er.buildAttempts,
|
|
74
|
+
updatedAt: result.er.updatedAt,
|
|
75
|
+
},
|
|
76
|
+
} : {}),
|
|
77
|
+
}, null, 2),
|
|
78
|
+
}],
|
|
79
|
+
...(result.success ? {} : { isError: true }),
|
|
80
|
+
};
|
|
81
|
+
}
|
|
82
|
+
catch (err) {
|
|
83
|
+
return {
|
|
84
|
+
content: [{ type: 'text', text: `sam_request error: ${err instanceof Error ? err.message : String(err)}` }],
|
|
85
|
+
isError: true,
|
|
86
|
+
};
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
};
|
|
90
|
+
}
|
|
91
|
+
//# sourceMappingURL=sam-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sam-request.js","sourceRoot":"","sources":["../../src/tools/sam-request.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* sam_status — Report Sam's current state
|
|
3
|
+
*
|
|
4
|
+
* Called by: Jessie (morning briefing), Mighty Mark (health checks), Greg
|
|
5
|
+
*/
|
|
6
|
+
import type { PipelineManager } from '../pipeline/pipeline-manager.js';
|
|
7
|
+
import type { SamPluginConfig } from '../pipeline/types.js';
|
|
8
|
+
export declare function createStatusTool(pipeline: PipelineManager, config: SamPluginConfig, fleetBusStatus: () => string): {
|
|
9
|
+
name: string;
|
|
10
|
+
description: string;
|
|
11
|
+
parameters: {
|
|
12
|
+
type: "object";
|
|
13
|
+
properties: {};
|
|
14
|
+
};
|
|
15
|
+
execute(_toolCallId: string, _params: Record<string, unknown>): Promise<{
|
|
16
|
+
content: {
|
|
17
|
+
type: string;
|
|
18
|
+
text: string;
|
|
19
|
+
}[];
|
|
20
|
+
isError?: undefined;
|
|
21
|
+
} | {
|
|
22
|
+
content: {
|
|
23
|
+
type: string;
|
|
24
|
+
text: string;
|
|
25
|
+
}[];
|
|
26
|
+
isError: boolean;
|
|
27
|
+
}>;
|
|
28
|
+
};
|
|
29
|
+
//# sourceMappingURL=sam-status.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sam-status.d.ts","sourceRoot":"","sources":["../../src/tools/sam-status.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,iCAAiC,CAAC;AACvE,OAAO,KAAK,EAAE,eAAe,EAAmB,MAAM,sBAAsB,CAAC;AAE7E,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,eAAe,EAAE,MAAM,EAAE,eAAe,EAAE,cAAc,EAAE,MAAM,MAAM;;;;;;;yBAMlF,MAAM,WAAW,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;;;;;;;;;;;EA+BtE"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* sam_status — Report Sam's current state
|
|
3
|
+
*
|
|
4
|
+
* Called by: Jessie (morning briefing), Mighty Mark (health checks), Greg
|
|
5
|
+
*/
|
|
6
|
+
export function createStatusTool(pipeline, config, fleetBusStatus) {
|
|
7
|
+
return {
|
|
8
|
+
name: 'sam_status',
|
|
9
|
+
description: 'Get Sam\'s current state — active ERs, blocked ERs, sandbox status, fleet-bus status. Use for morning briefings and health checks.',
|
|
10
|
+
parameters: { type: 'object', properties: {} },
|
|
11
|
+
async execute(_toolCallId, _params) {
|
|
12
|
+
try {
|
|
13
|
+
const summary = pipeline.getSummary();
|
|
14
|
+
const lastActivity = pipeline.getLastActivity();
|
|
15
|
+
const result = {
|
|
16
|
+
agent: {
|
|
17
|
+
name: 'Sam',
|
|
18
|
+
role: 'Chief Engineer',
|
|
19
|
+
version: '0.2.0',
|
|
20
|
+
internalName: 'SAM2',
|
|
21
|
+
},
|
|
22
|
+
pipeline: summary,
|
|
23
|
+
lastActivity,
|
|
24
|
+
sandbox: {
|
|
25
|
+
status: config.sandboxEnabled ? 'available' : 'unavailable',
|
|
26
|
+
},
|
|
27
|
+
fleetBus: fleetBusStatus(),
|
|
28
|
+
};
|
|
29
|
+
return {
|
|
30
|
+
content: [{ type: 'text', text: JSON.stringify(result, null, 2) }],
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
catch (err) {
|
|
34
|
+
return {
|
|
35
|
+
content: [{ type: 'text', text: `sam_status error: ${err instanceof Error ? err.message : String(err)}` }],
|
|
36
|
+
isError: true,
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
//# sourceMappingURL=sam-status.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sam-status.js","sourceRoot":"","sources":["../../src/tools/sam-status.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAKH,MAAM,UAAU,gBAAgB,CAAC,QAAyB,EAAE,MAAuB,EAAE,cAA4B;IAC/G,OAAO;QACL,IAAI,EAAE,YAAY;QAClB,WAAW,EACT,oIAAoI;QACtI,UAAU,EAAE,EAAE,IAAI,EAAE,QAAiB,EAAE,UAAU,EAAE,EAAE,EAAE;QACvD,KAAK,CAAC,OAAO,CAAC,WAAmB,EAAE,OAAgC;YACjE,IAAI,CAAC;gBACH,MAAM,OAAO,GAAG,QAAQ,CAAC,UAAU,EAAE,CAAC;gBACtC,MAAM,YAAY,GAAG,QAAQ,CAAC,eAAe,EAAE,CAAC;gBAEhD,MAAM,MAAM,GAAoB;oBAC9B,KAAK,EAAE;wBACL,IAAI,EAAE,KAAK;wBACX,IAAI,EAAE,gBAAgB;wBACtB,OAAO,EAAE,OAAO;wBAChB,YAAY,EAAE,MAAM;qBACrB;oBACD,QAAQ,EAAE,OAAO;oBACjB,YAAY;oBACZ,OAAO,EAAE;wBACP,MAAM,EAAE,MAAM,CAAC,cAAc,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,aAAa;qBAC5D;oBACD,QAAQ,EAAE,cAAc,EAAiC;iBAC1D,CAAC;gBAEF,OAAO;oBACL,OAAO,EAAE,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,CAAC,SAAS,CAAC,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,CAAC;iBACnE,CAAC;YACJ,CAAC;YAAC,OAAO,GAAY,EAAE,CAAC;gBACtB,OAAO;oBACL,OAAO,EAAE,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,qBAAqB,GAAG,YAAY,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,EAAE,CAAC;oBAC1G,OAAO,EAAE,IAAI;iBACd,CAAC;YACJ,CAAC;QACH,CAAC;KACF,CAAC;AACJ,CAAC"}
|
package/openclaw.plugin.json
CHANGED
|
@@ -1,11 +1,47 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "sam",
|
|
3
|
-
"name": "Sam —
|
|
4
|
-
"description": "
|
|
3
|
+
"name": "Sam — Chief Engineer",
|
|
4
|
+
"description": "Chief Engineer plugin — engineering pipeline management, Docker sandbox execution, autonomous build/test/deliver lifecycle, fleet-bus communications, and searchable engineering memory.",
|
|
5
|
+
"version": "0.2.0",
|
|
6
|
+
"entry": "dist/plugin.js",
|
|
5
7
|
"configSchema": {
|
|
6
8
|
"type": "object",
|
|
7
9
|
"additionalProperties": false,
|
|
8
|
-
"properties": {
|
|
10
|
+
"properties": {
|
|
11
|
+
"dataDir": {
|
|
12
|
+
"type": "string",
|
|
13
|
+
"description": "Directory for Sam's pipeline data storage",
|
|
14
|
+
"default": ".sam-data"
|
|
15
|
+
},
|
|
16
|
+
"sandboxEnabled": {
|
|
17
|
+
"type": "boolean",
|
|
18
|
+
"description": "Enable Docker sandbox execution tools (Phase 2)",
|
|
19
|
+
"default": false
|
|
20
|
+
},
|
|
21
|
+
"sandboxImage": {
|
|
22
|
+
"type": "string",
|
|
23
|
+
"description": "Docker image name for the sandbox container",
|
|
24
|
+
"default": "sam-sandbox:latest"
|
|
25
|
+
},
|
|
26
|
+
"artifactDir": {
|
|
27
|
+
"type": "string",
|
|
28
|
+
"description": "Directory for build artifacts",
|
|
29
|
+
"default": ".sam-artifacts"
|
|
30
|
+
},
|
|
31
|
+
"artifactRetentionDays": {
|
|
32
|
+
"type": "number",
|
|
33
|
+
"description": "Days to retain build artifacts before cleanup (default: 7)",
|
|
34
|
+
"default": 7
|
|
35
|
+
},
|
|
36
|
+
"telegramToken": {
|
|
37
|
+
"type": "string",
|
|
38
|
+
"description": "@sam_gidanc_bot Telegram bot token"
|
|
39
|
+
},
|
|
40
|
+
"telegramChatId": {
|
|
41
|
+
"type": "string",
|
|
42
|
+
"description": "Telegram chat ID for engineering updates to Greg"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
9
45
|
"required": []
|
|
10
46
|
}
|
|
11
47
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiassesstech/sam",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Sam —
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Sam — Chief Engineer plugin for OpenClaw. Engineering pipeline, Docker sandbox, autonomous execution, fleet-bus communications.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -10,6 +10,9 @@
|
|
|
10
10
|
"./dist/plugin.js"
|
|
11
11
|
]
|
|
12
12
|
},
|
|
13
|
+
"bin": {
|
|
14
|
+
"sam": "./dist/cli/bin.js"
|
|
15
|
+
},
|
|
13
16
|
"files": [
|
|
14
17
|
"dist",
|
|
15
18
|
"agent",
|
|
@@ -20,16 +23,21 @@
|
|
|
20
23
|
"scripts": {
|
|
21
24
|
"build": "tsc",
|
|
22
25
|
"dev": "tsc --watch",
|
|
26
|
+
"test": "vitest run",
|
|
27
|
+
"test:watch": "vitest",
|
|
28
|
+
"test:coverage": "vitest run --coverage",
|
|
23
29
|
"typecheck": "tsc --noEmit",
|
|
24
30
|
"lint": "tsc --noEmit",
|
|
25
|
-
"prepublishOnly": "npm run typecheck && npm run build"
|
|
31
|
+
"prepublishOnly": "npm run typecheck && npm run test && npm run build"
|
|
26
32
|
},
|
|
27
33
|
"keywords": [
|
|
28
34
|
"sam",
|
|
35
|
+
"sam2",
|
|
36
|
+
"chief-engineer",
|
|
29
37
|
"engineering-agent",
|
|
30
|
-
"sandboxed",
|
|
31
38
|
"openclaw",
|
|
32
|
-
"fleet-bus"
|
|
39
|
+
"fleet-bus",
|
|
40
|
+
"pipeline"
|
|
33
41
|
],
|
|
34
42
|
"author": "GiDanc AI LLC",
|
|
35
43
|
"license": "MIT",
|
|
@@ -43,16 +51,21 @@
|
|
|
43
51
|
"url": "https://github.com/spar65/compsi/issues"
|
|
44
52
|
},
|
|
45
53
|
"peerDependencies": {
|
|
46
|
-
"@aiassesstech/fleet-bus": ">=0.1.
|
|
54
|
+
"@aiassesstech/fleet-bus": ">=0.1.3",
|
|
55
|
+
"@aiassesstech/mighty-mark": ">=0.3.0"
|
|
47
56
|
},
|
|
48
57
|
"peerDependenciesMeta": {
|
|
49
58
|
"@aiassesstech/fleet-bus": {
|
|
50
59
|
"optional": true
|
|
60
|
+
},
|
|
61
|
+
"@aiassesstech/mighty-mark": {
|
|
62
|
+
"optional": true
|
|
51
63
|
}
|
|
52
64
|
},
|
|
53
65
|
"devDependencies": {
|
|
54
66
|
"@types/node": "^20.0.0",
|
|
55
|
-
"typescript": "^5.3.3"
|
|
67
|
+
"typescript": "^5.3.3",
|
|
68
|
+
"vitest": "^1.6.1"
|
|
56
69
|
},
|
|
57
70
|
"engines": {
|
|
58
71
|
"node": ">=18.0.0"
|