@tycoworks/tycoslide 0.13.2 → 0.13.3
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/README.md +2 -2
- package/dist/files.d.ts +4 -2
- package/dist/files.js +4 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -72,7 +72,7 @@ my-theme/
|
|
|
72
72
|
syntax.md # generated by `tycoslide package`
|
|
73
73
|
manifest.json # generated by `tycoslide package` -- the theme's layouts
|
|
74
74
|
assets.json # generated by `tycoslide package` -- the theme's picture catalog
|
|
75
|
-
assets.
|
|
75
|
+
assets.dat # generated by `tycoslide package` -- every declared asset, in one file
|
|
76
76
|
<package-name>.zip # uploadable Agent Skill bundle
|
|
77
77
|
```
|
|
78
78
|
|
|
@@ -82,7 +82,7 @@ my-theme/
|
|
|
82
82
|
**Manifest** — the machine-readable list of layouts, for an AI agent to read.
|
|
83
83
|
**Catalog** — the machine-readable list of assets, for an AI agent to search.
|
|
84
84
|
|
|
85
|
-
A packaged skill ships its assets as one `assets.
|
|
85
|
+
A packaged skill ships its assets as one `assets.dat` archive. `tycoslide build` expands it automatically before filling; the catalog stays a plain file.
|
|
86
86
|
|
|
87
87
|
## Diagrams
|
|
88
88
|
|
package/dist/files.d.ts
CHANGED
|
@@ -11,9 +11,11 @@ export declare const ASSETS_FILE = "assets.json";
|
|
|
11
11
|
/**
|
|
12
12
|
* The one archive a packaged theme's declared assets ship inside. Entries are
|
|
13
13
|
* stored at theme-relative POSIX paths and never rewritten: packaging writes
|
|
14
|
-
* them, building expands them.
|
|
14
|
+
* them, building expands them. Zip format, deliberately NOT named .zip: the
|
|
15
|
+
* upload host rejects nested .zip entries by extension while accepting .pptx,
|
|
16
|
+
* which is also a zip -- so the archive travels under a neutral name.
|
|
15
17
|
*/
|
|
16
|
-
export declare const ASSETS_ARCHIVE = "assets.
|
|
18
|
+
export declare const ASSETS_ARCHIVE = "assets.dat";
|
|
17
19
|
export declare const SKILL_FILE = "SKILL.md";
|
|
18
20
|
export declare const SYNTAX_FILE = "syntax.md";
|
|
19
21
|
/** The manifest a packaged skill installs from, authored rather than copied. */
|
package/dist/files.js
CHANGED
|
@@ -11,9 +11,11 @@ export const ASSETS_FILE = "assets.json";
|
|
|
11
11
|
/**
|
|
12
12
|
* The one archive a packaged theme's declared assets ship inside. Entries are
|
|
13
13
|
* stored at theme-relative POSIX paths and never rewritten: packaging writes
|
|
14
|
-
* them, building expands them.
|
|
14
|
+
* them, building expands them. Zip format, deliberately NOT named .zip: the
|
|
15
|
+
* upload host rejects nested .zip entries by extension while accepting .pptx,
|
|
16
|
+
* which is also a zip -- so the archive travels under a neutral name.
|
|
15
17
|
*/
|
|
16
|
-
export const ASSETS_ARCHIVE = "assets.
|
|
18
|
+
export const ASSETS_ARCHIVE = "assets.dat";
|
|
17
19
|
// SKILL.md, uppercase: the Agent Skills format requires that exact filename at
|
|
18
20
|
// the root of a skill folder, and a case-sensitive filesystem will not find any
|
|
19
21
|
// other.
|