Feat v0.2.5 ui polish dead code #9

Merged
xcaliber merged 20 commits from feat/v0.2.5-ui-polish-dead-code into main 2026-03-27 14:16:36 +00:00
6 changed files with 48 additions and 0 deletions
Showing only changes of commit 806979fcfe - Show all commits

View File

@@ -1,5 +1,6 @@
{
"id": "hello-dashboard",
"icon": "👋",
"title": "Hello Dashboard",
"route": "/s/hello-dashboard",
"auth": "authenticated",

View File

@@ -1,5 +1,6 @@
{
"id": "icd-test-runner",
"icon": "🧪",
"title": "ICD Test Runner",
"route": "/s/icd-test-runner",
"auth": "authenticated",

View 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

View File

@@ -1,5 +1,6 @@
{
"id": "sdk-test-runner",
"icon": "🔬",
"title": "SDK Test Runner",
"route": "/s/sdk-test-runner",
"auth": "authenticated",

22
packages/tasks/README.md Normal file
View 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

View File

@@ -1,5 +1,6 @@
{
"id": "team-activity-log",
"icon": "📋",
"title": "Team Activity Log",
"type": "full",
"tier": "starlark",