소스 정보
- 저장소
- jwalin-shah/inbox
- 최근 소스 활동
- 2026년 4월 10일 17:34
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/jwalin-shah/inbox --skill fullstack-worker명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | fullstack-worker |
| description | Fullstack worker for features touching both server API and TUI |
NOTE: Startup and cleanup are handled by worker-base. This skill defines the WORK PROCEDURE.
Use for features that modify BOTH backend (services/server/client) AND the TUI (inbox.py). This includes:
None — but workers should use tuistory skill if available for visual verification of TUI changes.
Read the feature description carefully. Understand the full scope: which server endpoints are needed, which TUI widgets/views change, what the user flow looks like.
Investigate the current code:
inbox.py to understand the TUI structure (widgets, tabs, CSS, bindings)inbox_server.py and services.py for the backendinbox_client.py for client methods you'll need to add/modify.factory/library/architecture.md, .factory/services.yamlPlan the implementation — identify ALL files that need changes:
services.py — new data access functionsinbox_server.py — new endpointsinbox_client.py — new client methodsinbox.py — new widgets, tabs, bindings, CSStests/ — new test files or additions to existing onesBackend first — write failing tests, then implement:
services.py (with tests)inbox_server.py (with TestClient tests)inbox_client.py (with mocked tests)uv run pytest -x -q — verify tests passTUI implementation:
ConversationItem, EventItem, NoteItem)compose() method if adding new tabs/viewsCSS class attributeBINDINGS list@work(thread=True) for any blocking I/Ocall_from_thread to update UI from worker threadsreactive for data that triggers re-rendersWrite TUI tests using Textual Pilot:
async def test_reminders_tab(self):
async with InboxApp().run_test() as pilot:
await pilot.press("ctrl+6")
# Assert tab switched, widgets rendered
Mock the InboxClient to avoid needing a real server.
Run full validation:
uv run pytest -x -q — all tests passuv run pyright — 0 errorsuv run ruff check . — 0 errorsManual verification:
uv run python inbox_server.py & then test API with curllsof -ti :9849 | xargs killVerify ALL items in the feature's expectedBehavior and verificationSteps.
Commit your changes.
class ReminderItem(ListItem):
def __init__(self, data: dict) -> None:
super().__init__()
self.data = data
def compose(self) -> ComposeResult:
d = self.data
t = Text()
t.append("icon ", style="dim")
t.append(d.get("title", ""), style="bold white")
# ... format additional fields
yield Static(t)
# In Tabs widget:
Tab("Reminders", id="tab-rem"),
# In BINDINGS:
Binding("ctrl+6", "filter_rem", "Reminders"),
# In tab_map:
"tab-rem": "reminders",
# In _render_sidebar:
if self._active_filter == "reminders":
for r in self.reminders_data:
lv.append(ReminderItem(r))
if self._active_filter == "reminders":
compose_input.placeholder = "New reminder title (Enter to create)"
{
"salientSummary": "Added Reminders tab to TUI with full CRUD: list display (title, due date, list name), create from compose input, complete via 'c' key, filter by list. Added 3 new server endpoints (PUT /reminders/{id}, DELETE /reminders/{id}, GET /reminders/search). 8 backend tests + 4 TUI pilot tests, all passing.",
"whatWasImplemented": "New ReminderItem widget in inbox.py with title/due_date/list_name display. Reminders tab accessible via Ctrl+6. Compose input creates reminders when on Reminders tab. 'c' key completes selected reminder, 'd' key deletes. Filter by list via input. Empty state shows 'No reminders'. Backend: PUT /reminders/{id} for edit, DELETE /reminders/{id} for delete, search endpoint. Client methods: edit_reminder(), delete_reminder().",
"whatWasLeftUndone": "",
"verification": {
"commandsRun": [
{"command": "uv run pytest -x -q", "exitCode": 0, "observation": "205 passed in 4.1s"},
{"command": "uv run pyright", "exitCode": 0, "observation": "0 errors"