agentic-surfaces 0.1.25 → 0.1.26

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 (2) hide show
  1. package/README.md +13 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -29,6 +29,19 @@ Workflows reference secrets as `${VAR}`. Provide them however you like:
29
29
 
30
30
  Real environment variables and Doppler override a `.env`.
31
31
 
32
+ ## Capabilities (plugins / skills)
33
+
34
+ A `full` agent's plugins and skills are **declared config**, not discovered from your `~/.claude`.
35
+ Set them in `agentic-surfaces.config.yaml` (project-wide) or per agent (frontmatter); the engine
36
+ loads them and resolves plugin paths relative to the project dir, so capabilities can be vendored:
37
+
38
+ ```yaml
39
+ capabilities:
40
+ plugins: [{ path: ./plugins/superpowers }] # resolved against the project dir
41
+ skills: all # or a curated list, e.g. [office-hours, cso]
42
+ settingSources: [project] # which .claude tiers load; [] = isolated
43
+ ```
44
+
32
45
  ## Safety
33
46
 
34
47
  Set `dryRun: true` in `agentic-surfaces.config.yaml` to block + log all writes (deterministic HTTP
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-surfaces",
3
- "version": "0.1.25",
3
+ "version": "0.1.26",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Visualize and follow your agentic-surfaces workflows in the browser — run `npx agentic-surfaces` from your repo to open the live dashboard.",
@@ -15,7 +15,7 @@
15
15
  "README.md"
16
16
  ],
17
17
  "dependencies": {
18
- "@agentic-surfaces/cli": "0.1.25"
18
+ "@agentic-surfaces/cli": "0.1.26"
19
19
  },
20
20
  "repository": {
21
21
  "type": "git",