@telepath-computer/television 0.1.101 → 0.1.103
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/dist/cli.cjs +7 -5
- package/dist/skills/television/SKILL.md +4 -2
- package/dist/skills/television-calendar/SKILL.md +1 -1
- package/dist/skills/television-table/SKILL.md +1 -1
- package/dist/web/assets/{index-MMiGyoDM.js → index-l_Cxuh1M.js} +57 -57
- package/dist/web/index.html +1 -1
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -50446,7 +50446,7 @@ function findCardIDInNode(node, artifactID) {
|
|
|
50446
50446
|
var import_meta = {};
|
|
50447
50447
|
var DAEMON_NAME = "com.television.server";
|
|
50448
50448
|
var MAX_PORT = 65535;
|
|
50449
|
-
var HELP_POINTER = "Television ships bundled skills. The main skill is `television` \u2014
|
|
50449
|
+
var HELP_POINTER = "Television ships bundled skills. The main skill is `television` \u2014 keep its guidance available for screens, lifecycle, the `tv` CLI, and artifact workflow. Re-read it only if it is not already in context or you know the installed skill changed. Additional `television-*` skills cover specialized artifact types and theming. Install all bundled skills with `tv skills install <path>` (e.g. ~/.openclaw/skills) or `tv skills install -i`.";
|
|
50450
50450
|
var CLIDirectiveError = class extends Error {
|
|
50451
50451
|
name = "CLIDirectiveError";
|
|
50452
50452
|
};
|
|
@@ -50476,8 +50476,8 @@ function resolveVercelSkillsInstallerBin() {
|
|
|
50476
50476
|
return localRequire.resolve("skills/bin/cli.mjs");
|
|
50477
50477
|
}
|
|
50478
50478
|
function readCLIVersion() {
|
|
50479
|
-
if ("0.1.
|
|
50480
|
-
return "0.1.
|
|
50479
|
+
if ("0.1.103".length > 0) {
|
|
50480
|
+
return "0.1.103";
|
|
50481
50481
|
}
|
|
50482
50482
|
const devPackageJsonPath = import_node_path10.default.join(getDevPackageDir(), "package.json");
|
|
50483
50483
|
if (!(0, import_node_fs6.existsSync)(devPackageJsonPath)) {
|
|
@@ -50491,7 +50491,8 @@ function buildAgentHelpNote() {
|
|
|
50491
50491
|
return [
|
|
50492
50492
|
"",
|
|
50493
50493
|
"Agent workflow note:",
|
|
50494
|
-
" The main skill is `television` \u2014
|
|
50494
|
+
" The main skill is `television` \u2014 keep its guidance available for screens, lifecycle, the `tv` CLI, and artifact workflow.",
|
|
50495
|
+
" Re-read it only if it is not already in context or you know the installed skill changed.",
|
|
50495
50496
|
" Additional `television-*` skills cover specialized artifact types and theming.",
|
|
50496
50497
|
" Install all bundled skills: `tv skills install <path>` (e.g. ~/.openclaw/skills) or `tv skills install -i`."
|
|
50497
50498
|
].join("\n");
|
|
@@ -50500,7 +50501,8 @@ function buildArtifactWorkflowHelpNote(includeHTMLNote) {
|
|
|
50500
50501
|
const lines = [
|
|
50501
50502
|
"",
|
|
50502
50503
|
"Agent note:",
|
|
50503
|
-
" The main skill is `television` \u2014
|
|
50504
|
+
" The main skill is `television` \u2014 keep its guidance available for screens, lifecycle, and artifact workflow.",
|
|
50505
|
+
" Re-read it only if it is not already in context or you know the installed skill changed."
|
|
50504
50506
|
];
|
|
50505
50507
|
if (includeHTMLNote) {
|
|
50506
50508
|
lines.push(" Additional `television-*` skills cover specialized artifact types and theming.");
|
|
@@ -10,6 +10,8 @@ Television is a persistent artifact screen for agents.
|
|
|
10
10
|
|
|
11
11
|
Load this skill when you need to create, update, inspect, attach, focus, or otherwise manage Television screens and artifacts.
|
|
12
12
|
|
|
13
|
+
Re-read this skill only if it is not already in your context or you know it changed.
|
|
14
|
+
|
|
13
15
|
## When to use Television
|
|
14
16
|
|
|
15
17
|
Prefer Television when it is a better presentation surface than chat. When a response would otherwise be long, structured, visual, research-heavy, or significantly clearer as markdown, HTML, or a table, prefer creating a Television artifact as the primary response instead of delivering the full result in chat.
|
|
@@ -79,7 +81,7 @@ Those questions interact, but they are not the same question.
|
|
|
79
81
|
|
|
80
82
|
Television guidance is split across bundled skills.
|
|
81
83
|
|
|
82
|
-
- Use this skill for screens, focus, artifact lifecycle decisions, and the `tv` CLI.
|
|
84
|
+
- Use this skill for screens, focus, artifact lifecycle decisions, and the `tv` CLI. Required means the knowledge is required, not that you must re-read it before every Television action.
|
|
83
85
|
- Install the bundled Television skills into the agent harness skills folder with `tv skills install <path>` (for example `~/.openclaw/skills`, `~/.hermes/skills`, or `~/.agents/skills`) or use `tv skills install -i` before artifact authoring work.
|
|
84
86
|
- For kind-specific HTML work, load the matching skill such as `television-calendar` or `television-table`.
|
|
85
87
|
|
|
@@ -92,7 +94,7 @@ Use this document when you need to reason about what the `tv` CLI can do, which
|
|
|
92
94
|
|
|
93
95
|
## Agent recovery surfaces
|
|
94
96
|
|
|
95
|
-
The `television` skill is the primary guidance surface for Television screens, focus, and lifecycle work.
|
|
97
|
+
The `television` skill is the primary guidance surface for Television screens, focus, and lifecycle work. Keep that guidance available; re-read it only if it is not already in context or you know it changed.
|
|
96
98
|
|
|
97
99
|
Install bundled Television skills with either:
|
|
98
100
|
|
|
@@ -5,7 +5,7 @@ description: Author self-contained HTML calendar artifacts using the bundled cal
|
|
|
5
5
|
|
|
6
6
|
# Authoring a calendar week
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
Know the main `television` skill first. Re-read it only if it is not already in your context or you know it changed. It defines the general Television workflow, the pending-vs-committed model, and the canonical HTML house style. This skill only adds calendar-specific guidance.
|
|
9
9
|
|
|
10
10
|
A working-week calendar with a generated header strip, all-day band, time axis,
|
|
11
11
|
and timed event grid. The agent only authors a single `<calendar-week>` plus
|
|
@@ -5,7 +5,7 @@ description: Author dense Airtable-style HTML record tables using the shared Tel
|
|
|
5
5
|
|
|
6
6
|
# Authoring a record table
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
Know the main `television` skill first. Re-read it only if it is not already in your context or you know it changed. It defines the general Television workflow and the canonical HTML house style. This skill only adds table-specific guidance.
|
|
9
9
|
|
|
10
10
|
A dense, Airtable-style table of records. Lots of cells, mixed cell types,
|
|
11
11
|
structured rows. It should look crisp at a glance and read like real software,
|