-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathdoc.go
More file actions
23 lines (23 loc) · 998 Bytes
/
Copy pathdoc.go
File metadata and controls
23 lines (23 loc) · 998 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Package main is the entry point for the wallfacer CLI application.
//
// Wallfacer is a task-board runner for AI agents. It provides a web UI where
// tasks are created as cards, dragged to "In Progress" to trigger AI agent
// execution in an isolated sandbox container, and results are inspected when done.
//
// This package embeds the frontend UI assets and documentation filesystem into the
// binary via go:embed, then dispatches to CLI subcommands (run, status,
// doctor) implemented in [latere.ai/x/wallfacer/internal/cli].
//
// # Connected packages
//
// Depends on [latere.ai/x/wallfacer/internal/cli] for all subcommand logic.
// Changes to CLI subcommand signatures or the embedded filesystem layout require
// updates here.
//
// # Usage
//
// wallfacer # Print help
// wallfacer run # Start server, restore last workspace group
// wallfacer doctor # Check prerequisites and config
// wallfacer status # Print board state to terminal
package main