@inquiryon/openclaw-amp-governance 1.0.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/index.js ADDED
@@ -0,0 +1,11 @@
1
+ console.log('[AMP Governance] Plugin module loaded.');
2
+
3
+ export default {
4
+ id: 'amp-governance',
5
+ name: 'AMP Governance',
6
+ description: 'AMP transparency, accountability, and HITL integration for OpenClaw',
7
+ register(api) {
8
+ console.log('[AMP Governance] register() called.');
9
+ api.logger.info('AMP Governance registered. Phase 1 smoke test.');
10
+ },
11
+ };
@@ -0,0 +1,9 @@
1
+ {
2
+ "id": "amp-governance",
3
+ "name": "AMP Governance",
4
+ "description": "AMP transparency, accountability, and HITL integration for OpenClaw",
5
+ "configSchema": {
6
+ "type": "object",
7
+ "additionalProperties": false
8
+ }
9
+ }
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "@inquiryon/openclaw-amp-governance",
3
+ "version": "1.0.0",
4
+ "description": "AMP governance plugin for OpenClaw",
5
+ "type": "module",
6
+ "files": [
7
+ "index.js",
8
+ "openclaw.plugin.json"
9
+ ],
10
+ "publishConfig": {
11
+ "access": "public"
12
+ },
13
+ "openclaw": {
14
+ "extensions": ["./index.js"]
15
+ }
16
+ }