create-walle 0.1.0 → 0.1.1
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/package.json +1 -1
- package/template/wall-e/docs/specs/2026-04-01-publish-plan.md +2 -2
- package/template/wall-e/docs/specs/SKILL-FORMAT.md +1 -1
- package/template/wall-e/skills/_bundled/email-digest/SKILL.md +1 -1
- package/template/wall-e/skills/_bundled/email-sync/SKILL.md +1 -1
- package/template/wall-e/skills/_bundled/google-calendar/SKILL.md +1 -1
- package/template/wall-e/skills/_bundled/memory-search/SKILL.md +1 -1
- package/template/wall-e/skills/_bundled/morning-briefing/SKILL.md +1 -1
- package/template/wall-e/skills/_bundled/slack-backfill/SKILL.md +1 -1
- package/template/wall-e/skills/_bundled/slack-sync/SKILL.md +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Publishing Plan: CTM & Wall-E
|
|
2
2
|
|
|
3
3
|
**Date:** 2026-04-01
|
|
4
|
-
**Author:**
|
|
4
|
+
**Author:** Wall-E Team
|
|
5
5
|
**Domain:** https://walle.sh
|
|
6
6
|
|
|
7
7
|
## Overview
|
|
@@ -20,7 +20,7 @@ Publish CTM (Claude Task Manager) and Wall-E (personal digital twin agent) as op
|
|
|
20
20
|
|---|---|---|---|
|
|
21
21
|
| Hardcoded Slack User ID `YOUR_SLACK_USER_ID` | Critical | 5 files in `scripts/`, `slack-ingest.js` | Env var `SLACK_OWNER_USER_ID` |
|
|
22
22
|
| `owner@example.com` in SKILL.md examples | High | `email-sync/SKILL.md`, `google-calendar/SKILL.md` | Replace with `owner@example.com` |
|
|
23
|
-
| Hardcoded
|
|
23
|
+
| Hardcoded Slack handle in queries | High | `slack-backfill.js`, `slack-channel-history.js`, `morning-briefing/run.js` | Read from config/brain |
|
|
24
24
|
| `OWNER_NAME` owner name constant | High | `pull-slack-via-claude.js`, `slack-ingest.js` | Use `brain.getOwnerName()` |
|
|
25
25
|
| Hardcoded `.walle/data` | Medium | `server.js`, `db.js`, `brain.js`, `api-walle.js` | Default to `~/.walle/data` |
|
|
26
26
|
|
|
@@ -67,7 +67,7 @@ description: >
|
|
|
67
67
|
Discovers recently active channels, fetches new messages,
|
|
68
68
|
and stores them in WALL-E's brain for search and context.
|
|
69
69
|
version: 1.2.0
|
|
70
|
-
author:
|
|
70
|
+
author: wall-e
|
|
71
71
|
|
|
72
72
|
# Execution mode: "script" (deterministic) or "agent" (LLM-driven)
|
|
73
73
|
execution: script
|
|
@@ -6,7 +6,7 @@ description: >
|
|
|
6
6
|
content. Inbox sync is optional and filters to only emails addressed
|
|
7
7
|
directly to the owner (on To/Cc line). Uses JXA to read Mail.app.
|
|
8
8
|
version: 1.1.0
|
|
9
|
-
author:
|
|
9
|
+
author: wall-e
|
|
10
10
|
execution: script
|
|
11
11
|
entry: run.js
|
|
12
12
|
args: ["--days-back", "3"]
|
|
@@ -6,7 +6,7 @@ description: >
|
|
|
6
6
|
with attendees, location, notes. Supports incremental sync with
|
|
7
7
|
update detection. Use for schedule awareness, meeting prep, calendar context.
|
|
8
8
|
version: 1.1.0
|
|
9
|
-
author:
|
|
9
|
+
author: wall-e
|
|
10
10
|
execution: script
|
|
11
11
|
entry: run.js
|
|
12
12
|
args: ["--days-back", "1", "--days-ahead", "14"]
|
|
@@ -5,7 +5,7 @@ description: >
|
|
|
5
5
|
paginates through all results, and stores messages in WALL-E's brain.
|
|
6
6
|
Use for initial setup or catching up on missed months.
|
|
7
7
|
version: 1.0.0
|
|
8
|
-
author:
|
|
8
|
+
author: wall-e
|
|
9
9
|
execution: script
|
|
10
10
|
entry: ../../../scripts/slack-backfill.js
|
|
11
11
|
args: []
|
|
@@ -5,7 +5,7 @@ description: >
|
|
|
5
5
|
Discovers recently active channels, fetches new messages incrementally.
|
|
6
6
|
Use for keeping Slack context fresh.
|
|
7
7
|
version: 1.0.0
|
|
8
|
-
author:
|
|
8
|
+
author: wall-e
|
|
9
9
|
execution: script
|
|
10
10
|
entry: ../../../scripts/slack-channel-history.js
|
|
11
11
|
args: ["--sync"]
|