artifactpass 0.1.0-rc.2
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/LICENSE +202 -0
- package/dist/cli.mjs +30328 -0
- package/dist/deployment/client/.assetsignore +2 -0
- package/dist/deployment/client/assets/index-49MiHcC1.js +72 -0
- package/dist/deployment/client/assets/index-moh_upAl.css +1 -0
- package/dist/deployment/client/assets/pdf-extraction-client-C9chgXy8.js +57 -0
- package/dist/deployment/client/assets/pdf.worker-CLesOks4.mjs +64857 -0
- package/dist/deployment/client/index.html +14 -0
- package/dist/deployment/index.js +31246 -0
- package/dist/deployment/migrations/0001-artifacts.sql +23 -0
- package/dist/deployment/migrations/0002-identity.sql +33 -0
- package/dist/deployment/migrations/0003-request-rate-limits.sql +9 -0
- package/dist/deployment/migrations/0004-device-token-replay.sql +1 -0
- package/dist/deployment/migrations/0005-publication-idempotency.sql +7 -0
- package/dist/deployment/migrations/0006-pdf-provenance.sql +16 -0
- package/dist/deployment/storage-lifecycle.json +17 -0
- package/dist/deployment/wrangler-template.json +103 -0
- package/dist/install-receipt-v1.schema.json +101 -0
- package/dist/install-receipt.schema.json +107 -0
- package/dist/marketplace/.agents/plugins/marketplace.json +20 -0
- package/dist/marketplace/.claude-plugin/marketplace.json +17 -0
- package/dist/marketplace/plugins/artifactpass/.claude-plugin/mcp.json +10 -0
- package/dist/marketplace/plugins/artifactpass/.claude-plugin/plugin.json +12 -0
- package/dist/marketplace/plugins/artifactpass/.codex-plugin/plugin.json +23 -0
- package/dist/marketplace/plugins/artifactpass/.mcp.json +11 -0
- package/dist/marketplace/plugins/artifactpass/dist/cli.mjs +93152 -0
- package/dist/marketplace/plugins/artifactpass/plugin-metadata.json +11 -0
- package/dist/marketplace/plugins/artifactpass/skills/read-shared-artifact/SKILL.md +18 -0
- package/dist/marketplace/plugins/artifactpass/skills/share-artifact/SKILL.md +32 -0
- package/package.json +28 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
CREATE TABLE artifacts (
|
|
2
|
+
id TEXT PRIMARY KEY NOT NULL,
|
|
3
|
+
status TEXT NOT NULL CHECK (status IN ('staging', 'active', 'cleanup_pending')),
|
|
4
|
+
object_key TEXT NOT NULL UNIQUE,
|
|
5
|
+
derived_object_key TEXT,
|
|
6
|
+
filename TEXT NOT NULL,
|
|
7
|
+
mime_type TEXT NOT NULL,
|
|
8
|
+
byte_size INTEGER NOT NULL CHECK (byte_size >= 0),
|
|
9
|
+
sha256 TEXT NOT NULL,
|
|
10
|
+
share_token_hash TEXT NOT NULL UNIQUE,
|
|
11
|
+
created_at INTEGER NOT NULL,
|
|
12
|
+
expires_at INTEGER NOT NULL,
|
|
13
|
+
extraction_status TEXT NOT NULL,
|
|
14
|
+
extractor TEXT,
|
|
15
|
+
extractor_version TEXT,
|
|
16
|
+
page_count INTEGER,
|
|
17
|
+
extraction_reason TEXT,
|
|
18
|
+
cleanup_attempts INTEGER NOT NULL DEFAULT 0,
|
|
19
|
+
last_cleanup_error TEXT
|
|
20
|
+
);
|
|
21
|
+
|
|
22
|
+
CREATE INDEX artifacts_status_expires_at_idx ON artifacts (status, expires_at);
|
|
23
|
+
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
CREATE TABLE device_authorizations (
|
|
2
|
+
id TEXT PRIMARY KEY NOT NULL,
|
|
3
|
+
device_code_hash TEXT NOT NULL UNIQUE,
|
|
4
|
+
user_code_hash TEXT NOT NULL UNIQUE,
|
|
5
|
+
code_challenge TEXT NOT NULL,
|
|
6
|
+
status TEXT NOT NULL CHECK (status IN ('pending', 'approved', 'consumed')),
|
|
7
|
+
created_at INTEGER NOT NULL,
|
|
8
|
+
expires_at INTEGER NOT NULL,
|
|
9
|
+
next_poll_at INTEGER NOT NULL,
|
|
10
|
+
poll_attempts INTEGER NOT NULL DEFAULT 0 CHECK (poll_attempts >= 0),
|
|
11
|
+
identity_subject TEXT,
|
|
12
|
+
identity_email TEXT,
|
|
13
|
+
approved_at INTEGER,
|
|
14
|
+
consumed_at INTEGER
|
|
15
|
+
);
|
|
16
|
+
|
|
17
|
+
CREATE INDEX device_authorizations_expires_at_idx
|
|
18
|
+
ON device_authorizations (expires_at);
|
|
19
|
+
|
|
20
|
+
CREATE TABLE agent_tokens (
|
|
21
|
+
id TEXT PRIMARY KEY NOT NULL,
|
|
22
|
+
token_hash TEXT NOT NULL UNIQUE,
|
|
23
|
+
identity_subject TEXT NOT NULL,
|
|
24
|
+
identity_email TEXT NOT NULL,
|
|
25
|
+
scope TEXT NOT NULL CHECK (scope = 'artifact:create'),
|
|
26
|
+
created_at INTEGER NOT NULL,
|
|
27
|
+
expires_at INTEGER NOT NULL,
|
|
28
|
+
revoked_at INTEGER
|
|
29
|
+
);
|
|
30
|
+
|
|
31
|
+
CREATE INDEX agent_tokens_expires_at_idx
|
|
32
|
+
ON agent_tokens (expires_at);
|
|
33
|
+
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
CREATE TABLE request_rate_limits (
|
|
2
|
+
bucket_key TEXT PRIMARY KEY NOT NULL,
|
|
3
|
+
window_start INTEGER NOT NULL,
|
|
4
|
+
request_count INTEGER NOT NULL CHECK (request_count >= 0),
|
|
5
|
+
expires_at INTEGER NOT NULL
|
|
6
|
+
);
|
|
7
|
+
|
|
8
|
+
CREATE INDEX request_rate_limits_expires_at_idx
|
|
9
|
+
ON request_rate_limits (expires_at);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ALTER TABLE device_authorizations ADD COLUMN agent_token_id TEXT;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
ALTER TABLE artifacts ADD COLUMN publisher_id TEXT;
|
|
2
|
+
ALTER TABLE artifacts ADD COLUMN publication_attempt TEXT;
|
|
3
|
+
ALTER TABLE artifacts ADD COLUMN payload_commitment TEXT;
|
|
4
|
+
|
|
5
|
+
CREATE UNIQUE INDEX artifacts_publisher_attempt_unique
|
|
6
|
+
ON artifacts (publisher_id, publication_attempt)
|
|
7
|
+
WHERE publisher_id IS NOT NULL AND publication_attempt IS NOT NULL;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
ALTER TABLE artifacts ADD COLUMN legacy_derived_object_key TEXT;
|
|
2
|
+
ALTER TABLE artifacts ADD COLUMN pdf_trust_status TEXT NOT NULL DEFAULT 'not_applicable';
|
|
3
|
+
ALTER TABLE artifacts ADD COLUMN pdf_trust_reason TEXT;
|
|
4
|
+
ALTER TABLE artifacts ADD COLUMN pdf_provenance_receipt TEXT;
|
|
5
|
+
|
|
6
|
+
UPDATE artifacts
|
|
7
|
+
SET legacy_derived_object_key = derived_object_key,
|
|
8
|
+
derived_object_key = NULL,
|
|
9
|
+
extraction_status = 'unavailable',
|
|
10
|
+
extractor = NULL,
|
|
11
|
+
extractor_version = NULL,
|
|
12
|
+
page_count = NULL,
|
|
13
|
+
extraction_reason = 'Legacy PDF extraction is not agent-readable.',
|
|
14
|
+
pdf_trust_status = 'human_only',
|
|
15
|
+
pdf_trust_reason = 'legacy'
|
|
16
|
+
WHERE mime_type = 'application/pdf';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"rules": [
|
|
3
|
+
{
|
|
4
|
+
"id": "delete-artifact-objects-after-two-days",
|
|
5
|
+
"enabled": true,
|
|
6
|
+
"conditions": {
|
|
7
|
+
"prefix": "artifacts/"
|
|
8
|
+
},
|
|
9
|
+
"deleteObjectsTransition": {
|
|
10
|
+
"condition": {
|
|
11
|
+
"type": "Age",
|
|
12
|
+
"maxAge": 172800
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
{
|
|
2
|
+
"configPath": "/Users/lorde/Documents/exploration-1/lordebuilds.artifacts.share/apps/artifact-service/wrangler.jsonc",
|
|
3
|
+
"userConfigPath": "/Users/lorde/Documents/exploration-1/lordebuilds.artifacts.share/apps/artifact-service/wrangler.jsonc",
|
|
4
|
+
"topLevelName": "lordebuilds-artifacts-share",
|
|
5
|
+
"definedEnvironments": [],
|
|
6
|
+
"compatibility_date": "2026-08-16",
|
|
7
|
+
"compatibility_flags": [],
|
|
8
|
+
"jsx_factory": "React.createElement",
|
|
9
|
+
"jsx_fragment": "React.Fragment",
|
|
10
|
+
"rules": [
|
|
11
|
+
{
|
|
12
|
+
"type": "ESModule",
|
|
13
|
+
"globs": [
|
|
14
|
+
"**/*.js",
|
|
15
|
+
"**/*.mjs"
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
],
|
|
19
|
+
"name": "lordebuilds-artifacts-share",
|
|
20
|
+
"main": "./index.js",
|
|
21
|
+
"triggers": {
|
|
22
|
+
"crons": [
|
|
23
|
+
"* * * * *"
|
|
24
|
+
]
|
|
25
|
+
},
|
|
26
|
+
"assets": {
|
|
27
|
+
"binding": "ASSETS",
|
|
28
|
+
"run_worker_first": [
|
|
29
|
+
"/health",
|
|
30
|
+
"/upload",
|
|
31
|
+
"/connect/*",
|
|
32
|
+
"/api/*",
|
|
33
|
+
"/a/*"
|
|
34
|
+
],
|
|
35
|
+
"directory": "./client"
|
|
36
|
+
},
|
|
37
|
+
"vars": {
|
|
38
|
+
"ALLOWED_EXPIRY_SECONDS": "900,1800,3600,43200,86400",
|
|
39
|
+
"MAX_ARTIFACT_BYTES": "26214400",
|
|
40
|
+
"MAX_EXPIRY_SECONDS": "86400"
|
|
41
|
+
},
|
|
42
|
+
"durable_objects": {
|
|
43
|
+
"bindings": []
|
|
44
|
+
},
|
|
45
|
+
"workflows": [],
|
|
46
|
+
"migrations": [],
|
|
47
|
+
"exports": {},
|
|
48
|
+
"kv_namespaces": [],
|
|
49
|
+
"cloudchamber": {},
|
|
50
|
+
"send_email": [],
|
|
51
|
+
"queues": {
|
|
52
|
+
"producers": [],
|
|
53
|
+
"consumers": []
|
|
54
|
+
},
|
|
55
|
+
"r2_buckets": [
|
|
56
|
+
{
|
|
57
|
+
"binding": "ARTIFACTS",
|
|
58
|
+
"bucket_name": "lordebuilds-artifacts-share"
|
|
59
|
+
}
|
|
60
|
+
],
|
|
61
|
+
"d1_databases": [
|
|
62
|
+
{
|
|
63
|
+
"binding": "ARTIFACT_DB",
|
|
64
|
+
"database_name": "lordebuilds-artifacts-share",
|
|
65
|
+
"database_id": "00000000-0000-0000-0000-000000000000",
|
|
66
|
+
"migrations_dir": "./migrations"
|
|
67
|
+
}
|
|
68
|
+
],
|
|
69
|
+
"vectorize": [],
|
|
70
|
+
"ai_search_namespaces": [],
|
|
71
|
+
"ai_search": [],
|
|
72
|
+
"agent_memory": [],
|
|
73
|
+
"hyperdrive": [],
|
|
74
|
+
"services": [],
|
|
75
|
+
"analytics_engine_datasets": [],
|
|
76
|
+
"dispatch_namespaces": [],
|
|
77
|
+
"mtls_certificates": [],
|
|
78
|
+
"pipelines": [],
|
|
79
|
+
"secrets_store_secrets": [],
|
|
80
|
+
"artifacts": [],
|
|
81
|
+
"unsafe_hello_world": [],
|
|
82
|
+
"flagship": [],
|
|
83
|
+
"worker_loaders": [],
|
|
84
|
+
"ratelimits": [],
|
|
85
|
+
"vpc_services": [],
|
|
86
|
+
"vpc_networks": [],
|
|
87
|
+
"logfwdr": {
|
|
88
|
+
"bindings": []
|
|
89
|
+
},
|
|
90
|
+
"python_modules": {
|
|
91
|
+
"exclude": [
|
|
92
|
+
"**/*.pyc"
|
|
93
|
+
]
|
|
94
|
+
},
|
|
95
|
+
"dev": {
|
|
96
|
+
"ip": "localhost",
|
|
97
|
+
"local_protocol": "http",
|
|
98
|
+
"upstream_protocol": "http",
|
|
99
|
+
"enable_containers": true,
|
|
100
|
+
"generate_types": false
|
|
101
|
+
},
|
|
102
|
+
"no_bundle": true
|
|
103
|
+
}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://artifactpass.com/schemas/install-receipt-v1.json",
|
|
4
|
+
"title": "ArtifactPass install receipt v1",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"required": [
|
|
8
|
+
"receipt_version",
|
|
9
|
+
"product",
|
|
10
|
+
"product_version",
|
|
11
|
+
"operation_id",
|
|
12
|
+
"status",
|
|
13
|
+
"profile",
|
|
14
|
+
"origin",
|
|
15
|
+
"workspace_roots",
|
|
16
|
+
"adapters",
|
|
17
|
+
"portable_bundle",
|
|
18
|
+
"mcp",
|
|
19
|
+
"skills",
|
|
20
|
+
"credential",
|
|
21
|
+
"migration",
|
|
22
|
+
"outcomes",
|
|
23
|
+
"restart_required",
|
|
24
|
+
"rollback",
|
|
25
|
+
"receipt_path"
|
|
26
|
+
],
|
|
27
|
+
"properties": {
|
|
28
|
+
"receipt_version": { "const": 1 },
|
|
29
|
+
"product": { "const": "ArtifactPass" },
|
|
30
|
+
"product_version": { "type": "string", "minLength": 1 },
|
|
31
|
+
"operation_id": { "type": "string", "minLength": 1 },
|
|
32
|
+
"status": { "enum": ["success", "failed"] },
|
|
33
|
+
"profile": { "type": "string", "pattern": "^[a-z0-9](?:[a-z0-9-]{0,30}[a-z0-9])?$" },
|
|
34
|
+
"origin": { "type": "string", "format": "uri" },
|
|
35
|
+
"workspace_roots": {
|
|
36
|
+
"type": "array",
|
|
37
|
+
"minItems": 1,
|
|
38
|
+
"uniqueItems": true,
|
|
39
|
+
"items": { "type": "string", "minLength": 1 }
|
|
40
|
+
},
|
|
41
|
+
"adapters": {
|
|
42
|
+
"type": "array",
|
|
43
|
+
"uniqueItems": true,
|
|
44
|
+
"items": { "enum": ["codex", "claude"] }
|
|
45
|
+
},
|
|
46
|
+
"portable_bundle": {
|
|
47
|
+
"type": "object",
|
|
48
|
+
"additionalProperties": false,
|
|
49
|
+
"required": ["sha256", "host_registration"],
|
|
50
|
+
"properties": {
|
|
51
|
+
"sha256": { "type": "string", "pattern": "^(?:[a-f0-9]{64})?$" },
|
|
52
|
+
"host_registration": { "enum": ["installed", "manual-required", "not-reached"] },
|
|
53
|
+
"mcp_config": { "type": "string", "minLength": 1 },
|
|
54
|
+
"skills_directory": { "type": "string", "minLength": 1 }
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"mcp": {
|
|
58
|
+
"type": "object",
|
|
59
|
+
"additionalProperties": false,
|
|
60
|
+
"required": ["negotiated", "tools", "representative_invocation"],
|
|
61
|
+
"properties": {
|
|
62
|
+
"negotiated": { "type": "boolean" },
|
|
63
|
+
"tools": {
|
|
64
|
+
"type": "array",
|
|
65
|
+
"uniqueItems": true,
|
|
66
|
+
"items": { "enum": ["publish_artifact", "read_artifact"] }
|
|
67
|
+
},
|
|
68
|
+
"representative_invocation": { "type": "boolean" }
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"skills": {
|
|
72
|
+
"type": "object",
|
|
73
|
+
"additionalProperties": false,
|
|
74
|
+
"required": ["verified", "names"],
|
|
75
|
+
"properties": {
|
|
76
|
+
"verified": { "type": "boolean" },
|
|
77
|
+
"names": {
|
|
78
|
+
"type": "array",
|
|
79
|
+
"uniqueItems": true,
|
|
80
|
+
"items": { "enum": ["read-shared-artifact", "share-artifact"] }
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
"credential": { "enum": ["reused", "created", "rotated", "none", "not-reached"] },
|
|
85
|
+
"migration": {
|
|
86
|
+
"type": "object",
|
|
87
|
+
"additionalProperties": false,
|
|
88
|
+
"required": ["actions", "legacy_preserved"],
|
|
89
|
+
"properties": {
|
|
90
|
+
"actions": { "type": "array", "items": { "type": "string", "minLength": 1 } },
|
|
91
|
+
"legacy_preserved": { "type": "boolean" }
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"outcomes": { "type": "array", "items": { "type": "string", "minLength": 1 } },
|
|
95
|
+
"restart_required": { "type": "boolean" },
|
|
96
|
+
"rollback": { "enum": ["not-required", "complete"] },
|
|
97
|
+
"failed_stage": { "enum": ["preflight", "bundle", "connection", "verified", "receipt", "committed"] },
|
|
98
|
+
"resumed_from": { "type": "string", "minLength": 1 },
|
|
99
|
+
"receipt_path": { "type": "string", "minLength": 1 }
|
|
100
|
+
}
|
|
101
|
+
}
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://artifactpass.com/schemas/install-receipt-v2.json",
|
|
4
|
+
"title": "ArtifactPass install receipt v2",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"required": [
|
|
8
|
+
"receipt_version",
|
|
9
|
+
"product",
|
|
10
|
+
"product_version",
|
|
11
|
+
"operation_id",
|
|
12
|
+
"status",
|
|
13
|
+
"profile",
|
|
14
|
+
"origin",
|
|
15
|
+
"workspace_roots",
|
|
16
|
+
"adapters",
|
|
17
|
+
"portable_bundle",
|
|
18
|
+
"mcp",
|
|
19
|
+
"skills",
|
|
20
|
+
"credential",
|
|
21
|
+
"migration",
|
|
22
|
+
"outcomes",
|
|
23
|
+
"restart_required",
|
|
24
|
+
"rollback",
|
|
25
|
+
"receipt_path"
|
|
26
|
+
],
|
|
27
|
+
"properties": {
|
|
28
|
+
"receipt_version": { "const": 2 },
|
|
29
|
+
"product": { "const": "ArtifactPass" },
|
|
30
|
+
"product_version": { "type": "string", "minLength": 1 },
|
|
31
|
+
"operation_id": { "type": "string", "minLength": 1 },
|
|
32
|
+
"status": { "enum": ["success", "failed"] },
|
|
33
|
+
"profile": { "type": "string", "pattern": "^[a-z0-9](?:[a-z0-9-]{0,30}[a-z0-9])?$" },
|
|
34
|
+
"origin": { "type": "string", "format": "uri" },
|
|
35
|
+
"workspace_roots": {
|
|
36
|
+
"type": "array",
|
|
37
|
+
"minItems": 1,
|
|
38
|
+
"uniqueItems": true,
|
|
39
|
+
"items": { "type": "string", "minLength": 1 }
|
|
40
|
+
},
|
|
41
|
+
"adapters": {
|
|
42
|
+
"type": "array",
|
|
43
|
+
"uniqueItems": true,
|
|
44
|
+
"items": { "enum": ["codex", "claude"] }
|
|
45
|
+
},
|
|
46
|
+
"portable_bundle": {
|
|
47
|
+
"type": "object",
|
|
48
|
+
"additionalProperties": false,
|
|
49
|
+
"required": ["sha256", "host_registration"],
|
|
50
|
+
"properties": {
|
|
51
|
+
"sha256": { "type": "string", "pattern": "^(?:[a-f0-9]{64})?$" },
|
|
52
|
+
"host_registration": { "enum": ["installed", "manual-required", "not-reached"] },
|
|
53
|
+
"mcp_config": { "type": "string", "minLength": 1 },
|
|
54
|
+
"skills_directory": { "type": "string", "minLength": 1 }
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"mcp": {
|
|
58
|
+
"type": "object",
|
|
59
|
+
"additionalProperties": false,
|
|
60
|
+
"required": ["negotiated", "tools", "representative_invocation"],
|
|
61
|
+
"properties": {
|
|
62
|
+
"negotiated": { "type": "boolean" },
|
|
63
|
+
"tools": {
|
|
64
|
+
"type": "array",
|
|
65
|
+
"uniqueItems": true,
|
|
66
|
+
"items": { "enum": ["publish_artifact", "read_artifact"] }
|
|
67
|
+
},
|
|
68
|
+
"representative_invocation": { "type": "boolean" }
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"skills": {
|
|
72
|
+
"type": "object",
|
|
73
|
+
"additionalProperties": false,
|
|
74
|
+
"required": ["verified", "names"],
|
|
75
|
+
"properties": {
|
|
76
|
+
"verified": { "type": "boolean" },
|
|
77
|
+
"names": {
|
|
78
|
+
"type": "array",
|
|
79
|
+
"uniqueItems": true,
|
|
80
|
+
"items": { "enum": ["read-shared-artifact", "share-artifact"] }
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
"credential": { "enum": ["reused", "created", "rotated", "none", "not-reached"] },
|
|
85
|
+
"migration": {
|
|
86
|
+
"type": "object",
|
|
87
|
+
"additionalProperties": false,
|
|
88
|
+
"required": ["actions", "legacy_preserved"],
|
|
89
|
+
"properties": {
|
|
90
|
+
"actions": { "type": "array", "items": { "type": "string", "minLength": 1 } },
|
|
91
|
+
"legacy_preserved": { "type": "boolean" }
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"outcomes": { "type": "array", "items": { "type": "string", "minLength": 1 } },
|
|
95
|
+
"restart_required": { "type": "boolean" },
|
|
96
|
+
"rollback": { "enum": ["not-required", "complete", "incomplete"] },
|
|
97
|
+
"rollback_failures": {
|
|
98
|
+
"type": "array",
|
|
99
|
+
"minItems": 1,
|
|
100
|
+
"uniqueItems": true,
|
|
101
|
+
"items": { "type": "string", "minLength": 1 }
|
|
102
|
+
},
|
|
103
|
+
"failed_stage": { "enum": ["preflight", "bundle", "connection", "verified", "receipt", "committed"] },
|
|
104
|
+
"resumed_from": { "type": "string", "minLength": 1 },
|
|
105
|
+
"receipt_path": { "type": "string", "minLength": 1 }
|
|
106
|
+
}
|
|
107
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "artifactpass",
|
|
3
|
+
"interface": {
|
|
4
|
+
"displayName": "ArtifactPass"
|
|
5
|
+
},
|
|
6
|
+
"plugins": [
|
|
7
|
+
{
|
|
8
|
+
"name": "artifactpass",
|
|
9
|
+
"source": {
|
|
10
|
+
"source": "local",
|
|
11
|
+
"path": "./plugins/artifactpass"
|
|
12
|
+
},
|
|
13
|
+
"policy": {
|
|
14
|
+
"installation": "AVAILABLE",
|
|
15
|
+
"authentication": "ON_INSTALL"
|
|
16
|
+
},
|
|
17
|
+
"category": "Productivity"
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "artifactpass",
|
|
3
|
+
"owner": {
|
|
4
|
+
"name": "Lorde Builds"
|
|
5
|
+
},
|
|
6
|
+
"metadata": {
|
|
7
|
+
"description": "Publishes a file from an explicitly allowed workspace through ArtifactPass and reads supported shared artifacts in bounded chunks."
|
|
8
|
+
},
|
|
9
|
+
"plugins": [
|
|
10
|
+
{
|
|
11
|
+
"name": "artifactpass",
|
|
12
|
+
"source": "./plugins/artifactpass",
|
|
13
|
+
"description": "Share local Markdown, HTML, and PDF artifacts through a private temporary link.",
|
|
14
|
+
"category": "Productivity"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "artifactpass",
|
|
3
|
+
"version": "0.1.0-rc.2",
|
|
4
|
+
"displayName": "ArtifactPass",
|
|
5
|
+
"description": "Share local Markdown, HTML, and PDF artifacts through a private temporary link.",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Lorde Builds"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/lordelogos/lordebuilds.artifact.pass",
|
|
10
|
+
"skills": "./skills/",
|
|
11
|
+
"mcpServers": "./.claude-plugin/mcp.json"
|
|
12
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "artifactpass",
|
|
3
|
+
"version": "0.1.0-rc.2",
|
|
4
|
+
"description": "Share local Markdown, HTML, and PDF artifacts through a private temporary link.",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Lorde Builds"
|
|
7
|
+
},
|
|
8
|
+
"homepage": "https://github.com/lordelogos/lordebuilds.artifact.pass",
|
|
9
|
+
"skills": "./skills/",
|
|
10
|
+
"interface": {
|
|
11
|
+
"displayName": "ArtifactPass",
|
|
12
|
+
"shortDescription": "Share local Markdown, HTML, and PDF artifacts through a private temporary link.",
|
|
13
|
+
"longDescription": "Publishes a file from an explicitly allowed workspace through ArtifactPass and reads supported shared artifacts in bounded chunks.",
|
|
14
|
+
"developerName": "Lorde Builds",
|
|
15
|
+
"category": "Productivity",
|
|
16
|
+
"capabilities": [
|
|
17
|
+
"MCP server",
|
|
18
|
+
"Skills"
|
|
19
|
+
],
|
|
20
|
+
"defaultPrompt": "Share a supported local artifact or read an ArtifactPass link."
|
|
21
|
+
},
|
|
22
|
+
"mcpServers": "./.mcp.json"
|
|
23
|
+
}
|