@assemblyline-agents/arcads 1.0.0 → 3.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/LICENSE +1 -1
- package/README.md +4 -9
- package/package.json +3 -4
- package/skills/arcads/SKILL.md +0 -31
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -28,19 +28,14 @@ Assembly Line's normal connection callback URL.
|
|
|
28
28
|
assembly-line add arcads agent
|
|
29
29
|
```
|
|
30
30
|
|
|
31
|
-
The generated connection
|
|
32
|
-
|
|
33
|
-
approval
|
|
31
|
+
The generated connection enables all reviewed Arcads tools without requiring
|
|
32
|
+
an approval surface. Set `access: "approval-required"` if tools that create or
|
|
33
|
+
edit media and consume account credits should pause for approval:
|
|
34
34
|
|
|
35
35
|
```ts
|
|
36
36
|
import { defineArcadsConnection } from "@assemblyline-agents/arcads";
|
|
37
37
|
|
|
38
|
-
export default defineArcadsConnection({
|
|
39
|
-
access: {
|
|
40
|
-
read: true,
|
|
41
|
-
write: { approval: "always" }
|
|
42
|
-
}
|
|
43
|
-
});
|
|
38
|
+
export default defineArcadsConnection({ access: "approval-required" });
|
|
44
39
|
```
|
|
45
40
|
|
|
46
41
|
The deployment owner supplies the Arcads account, subscription, OAuth client,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@assemblyline-agents/arcads",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -9,12 +9,11 @@
|
|
|
9
9
|
}
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@assemblyline-agents/core": "
|
|
12
|
+
"@assemblyline-agents/core": "3.0.0"
|
|
13
13
|
},
|
|
14
14
|
"description": "Official Assembly Line connection plugin for the Arcads hosted MCP server.",
|
|
15
15
|
"files": [
|
|
16
|
-
"dist"
|
|
17
|
-
"skills"
|
|
16
|
+
"dist"
|
|
18
17
|
],
|
|
19
18
|
"engines": {
|
|
20
19
|
"node": ">=22.19.0"
|
package/skills/arcads/SKILL.md
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: arcads
|
|
3
|
-
description: Analyze, generate, and edit social media ads through the connected Arcads MCP server.
|
|
4
|
-
---
|
|
5
|
-
# Arcads
|
|
6
|
-
|
|
7
|
-
Use the live Arcads tool catalog instead of assuming a fixed model or operation
|
|
8
|
-
name. Arcads evolves its media models and edit tools; select the tool whose
|
|
9
|
-
current description and schema match the requested input and output modality.
|
|
10
|
-
|
|
11
|
-
Read operations can inspect asset state and retrieve generated results. Upload
|
|
12
|
-
URL creation, analysis, generation, and editing are write operations because
|
|
13
|
-
they can create remote assets or consume credits. Do not start them unless the
|
|
14
|
-
connection exposes write authority and the configured approval gate permits the
|
|
15
|
-
call.
|
|
16
|
-
|
|
17
|
-
For a local image, audio file, or video:
|
|
18
|
-
|
|
19
|
-
1. Confirm that the user owns or is authorized to transform the source.
|
|
20
|
-
2. Request an upload URL with the file's exact MIME type.
|
|
21
|
-
3. Upload the bytes with a host-side HTTP tool; never paste binary data,
|
|
22
|
-
credentials, presigned URLs, or OAuth tokens into a model prompt.
|
|
23
|
-
4. Pass the returned remote file path to the selected Arcads tool.
|
|
24
|
-
5. Poll the asset status at a reasonable interval, then retrieve the completed
|
|
25
|
-
result.
|
|
26
|
-
|
|
27
|
-
For social video, preserve the user's requested aspect ratio and duration.
|
|
28
|
-
Default to `9:16` only when the request is clearly for TikTok, Reels, or Shorts.
|
|
29
|
-
Do not generate fake product imagery or logos when the user expects a real
|
|
30
|
-
brand asset. Prefer two or more creative variants only after making the added
|
|
31
|
-
credit cost clear.
|