소스 정보
- 저장소
- 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 backend-worker명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | backend-worker |
| description | Backend-focused worker for services, server, client, and infrastructure changes |
NOTE: Startup and cleanup are handled by worker-base. This skill defines the WORK PROCEDURE.
Use for features that primarily modify:
services.py — data access layer functionsinbox_server.py — API endpoints, server stateinbox_client.py — HTTP client methodscontacts.py — contact resolutionambient_notes.py / ambient_daemon.py — ambient capturetests/NOT for features that require TUI changes (use fullstack-worker instead).
None — this worker operates purely on backend code and tests.
Read the feature description carefully. Understand exactly what behavior is expected, what preconditions must hold, and what verification steps are defined.
Investigate the current code relevant to this feature:
.factory/library/architecture.md for system architecture.factory/services.yaml for commands and servicesWrite failing tests first (RED):
tests/conftest.py and peer test filesFastAPI TestClient (see tests/test_server_endpoints.py)httpx.Client (see tests/test_client.py)uv run pytest path/to/test_file.py -x)Implement to make tests pass (GREEN):
from loguru import logger)Run full validation:
uv run pytest -x -q — all tests passuv run pyright — 0 errorsuv run ruff check . — 0 errorsManual verification (if feature has API endpoints):
uv run python inbox_server.py &lsof -ti :9849 | xargs killVerify preconditions and expected behavior from the feature description:
expectedBehavior — is it satisfied?verificationStepsCommit your changes with a descriptive message.
{
"salientSummary": "Added structured loguru logging to all service functions in services.py, replacing 47 silent except blocks with logger.error/exception calls. All 190 tests pass, pyright 0 errors, ruff 0 errors. Manually triggered a service error and confirmed log output in stderr.",
"whatWasImplemented": "Replaced all bare except:pass and except Exception:return[] patterns in services.py with loguru logging. Added `from loguru import logger` import. Each except block now logs the function name, arguments (sanitized), and full traceback via logger.exception(). Added 3 new tests verifying error logging behavior.",
"whatWasLeftUndone": "",
"verification": {
"commandsRun": [
{"command": "uv run pytest -x -q", "exitCode": 0, "observation": "193 passed in 3.8s"},
{"command": "uv run pyright", "exitCode": 0, "observation": "0 errors, 0 warnings"},