Below is the Effect 4 shape I’d create for a short top-level mlink CLI.
Commands
No links prefix:
mlink health
mlink list [--q] [--status active|tombstoned|all] [--kind alias|generated|all] [--limit] [--cursor] [--all]
mlink get <slug>Below is the Effect 4 shape I’d create for a short top-level mlink CLI.
Commands
No links prefix:
mlink health
mlink list [--q] [--status active|tombstoned|all] [--kind alias|generated|all] [--limit] [--cursor] [--all]
mlink get <slug>name: Hook Development description: >- This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "implement agent hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", "frontmatter hooks", "scoped hooks", "once: true", or mentions hook events (PreToolUse, PostToolUse, Stop,
| 信息管理流程 | |
| 待提交 | |
| 提交 -> 审核中 | |
| 审核中 | |
| 审批人拒绝 -> 驳回 | |
| 审批人通过 -> 待发布 | |
| 驳回 | |
| 自动 -> 待提交 | |
| 待发布 | |
| 信息管理流程 | |
| 待提交* | |
| 提交 -> 审核中 | |
| 审核中 | |
| 审批人拒绝 -> 驳回 | |
| 审批人通过 -> 待发布 | |
| 驳回 | |
| 自动 -> 待提交 | |
| 待发布 | |
| Aspiration App Logic | |
| open app from home screen -> Has User Previously Logged In? | |
| Logged Out Flow | |
| Has User Previously Logged In? | |
| yes -> Is Device Authentication Set Up? | |
| no -> App Welcome Screen | |
| App Welcome Screen | |
| tap login -> Is Device Authentication Set Up? |
| const addCounter = (list) => { | |
| return [...list, 0]; | |
| }; | |
| const removeCounter = (list, index) => {\ | |
| return [ | |
| ...list.slice(0, index), | |
| ...list.slice(index + 1) | |
| ]; | |
| }; |
| ```ts | |
| ``` |
| // errors-handler.ts | |
| import { ErrorHandler, Injectable} from '@angular/core'; | |
| import { HttpErrorResponse } from '@angular/common/http'; | |
| @Injectable() | |
| export class ErrorsHandler implements ErrorHandler { | |
| handleError(error: Error | HttpErrorResponse) { | |
| if (error instanceof HttpErrorResponse) { | |
| // Server or connection error happened | |
| if (!navigator.onLine) { | |
| // Handle offline error |
| // ---- | |
| // Sass (v3.4.12) | |
| // Compass (v1.0.3) | |
| // ---- | |
| // example1 | |
| $color:red; | |
| .button{ | |
| $color:blue; | |
| color:$color; |