Add missing manifest icons and PoC documentation
- Add emoji icon field to hello-dashboard, icd-test-runner, sdk-test-runner, and team-activity-log manifests - Create README.md for tasks and schedules packages marking them as Proof of Concept with documented graduation criteria Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
"id": "hello-dashboard",
|
"id": "hello-dashboard",
|
||||||
|
"icon": "👋",
|
||||||
"title": "Hello Dashboard",
|
"title": "Hello Dashboard",
|
||||||
"route": "/s/hello-dashboard",
|
"route": "/s/hello-dashboard",
|
||||||
"auth": "authenticated",
|
"auth": "authenticated",
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
"id": "icd-test-runner",
|
"id": "icd-test-runner",
|
||||||
|
"icon": "🧪",
|
||||||
"title": "ICD Test Runner",
|
"title": "ICD Test Runner",
|
||||||
"route": "/s/icd-test-runner",
|
"route": "/s/icd-test-runner",
|
||||||
"auth": "authenticated",
|
"auth": "authenticated",
|
||||||
|
|||||||
22
packages/schedules/README.md
Normal file
22
packages/schedules/README.md
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
# Schedules
|
||||||
|
|
||||||
|
**Status: Proof of Concept**
|
||||||
|
|
||||||
|
Schedule management surface wrapping the kernel cron API. Ships with
|
||||||
|
core for SDK validation purposes, not as a permanent commitment.
|
||||||
|
|
||||||
|
## Purpose
|
||||||
|
|
||||||
|
Provides a management UI for user-created scheduled tasks (cron). Proves
|
||||||
|
that kernel APIs can be wrapped by extension surfaces without
|
||||||
|
special-casing.
|
||||||
|
|
||||||
|
## Graduation Criteria
|
||||||
|
|
||||||
|
To become a permanent core package, schedules must meet:
|
||||||
|
|
||||||
|
1. **Cron expression builder** — visual UI for building cron expressions
|
||||||
|
2. **Execution history** — log viewer with output and error details
|
||||||
|
3. **Error alerting** — notification on failed runs
|
||||||
|
4. **Test coverage** — API contract tests in the ICD test runner
|
||||||
|
5. **Timezone-aware display** — show next run in user's local timezone
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
"id": "sdk-test-runner",
|
"id": "sdk-test-runner",
|
||||||
|
"icon": "🔬",
|
||||||
"title": "SDK Test Runner",
|
"title": "SDK Test Runner",
|
||||||
"route": "/s/sdk-test-runner",
|
"route": "/s/sdk-test-runner",
|
||||||
"auth": "authenticated",
|
"auth": "authenticated",
|
||||||
|
|||||||
22
packages/tasks/README.md
Normal file
22
packages/tasks/README.md
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
# Tasks
|
||||||
|
|
||||||
|
**Status: Proof of Concept**
|
||||||
|
|
||||||
|
Task management surface rebuilt as a Starlark extension. Ships with core
|
||||||
|
for SDK validation purposes, not as a permanent commitment.
|
||||||
|
|
||||||
|
## Purpose
|
||||||
|
|
||||||
|
Validates all three trigger primitives (event bus, webhook, cron) and
|
||||||
|
proves the full extension surface stack: Starlark API routes, ext_data
|
||||||
|
tables, SDK UI components, and notifications.
|
||||||
|
|
||||||
|
## Graduation Criteria
|
||||||
|
|
||||||
|
To become a permanent core package, tasks must meet:
|
||||||
|
|
||||||
|
1. **Feature completeness** — assignees, comments, attachments, subtasks
|
||||||
|
2. **Test coverage** — API contract tests in the ICD test runner
|
||||||
|
3. **Performance** — tested at 1000+ tasks with acceptable load times
|
||||||
|
4. **Design review** — UI/UX matches platform design language
|
||||||
|
5. **No kernel special-casing** — runs purely through extension APIs
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
"id": "team-activity-log",
|
"id": "team-activity-log",
|
||||||
|
"icon": "📋",
|
||||||
"title": "Team Activity Log",
|
"title": "Team Activity Log",
|
||||||
"type": "full",
|
"type": "full",
|
||||||
"tier": "starlark",
|
"tier": "starlark",
|
||||||
|
|||||||
Reference in New Issue
Block a user