一键导入
sanctum-auth
Install and wire Laravel Sanctum token auth for PulseDesk — install:api, register/login/logout/me, roles, and role middleware. The auth foundation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Install and wire Laravel Sanctum token auth for PulseDesk — install:api, register/login/logout/me, roles, and role middleware. The auth foundation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Turn a feature or sprint goal into an ordered backlog of small, testable issues with dependencies. Hermes uses this to write sprints/sprint-0N.md.
Hermes's format for handing ONE scoped, testable issue to OpenClaw in
The non-negotiable architecture rules Hermes enforces when assigning and reviewing work — Laravel layering, tenancy, auth, and the human-merge gate.
Post GitHub Actions CI results to the
Define PulseDesk's domain entities and relationships before assigning model work, so the data model stays coherent. Source of truth is ARCHITECTURE.md.
Recipe for a new Eloquent model in PulseDesk — model + migration + factory + seeder + tenant trait. Use when introducing a domain entity.
| name | sanctum-auth |
| description | Install and wire Laravel Sanctum token auth for PulseDesk — install:api, register/login/logout/me, roles, and role middleware. The auth foundation. |
php artisan install:api (adds Sanctum + api routes + personal_access_tokens migration)use HasApiTokens;, add role (admin|agent|customer) + organization_id./api/register → create org + admin (or join), return token/api/login → validate, return $user->createToken()->plainTextToken/api/logout → revoke current token/api/me → current user + org + roleEnsureRole:agent,admin (or policies) for agent/admin-only routes./me; unauthenticated → 401; wrong role → 403.