- 篇幅:1000字以内。真正的寓言是精炼的,靠一个核心场景、一两次转折把意思撑起来,不需要铺陈。
- 世界观:故事是虚构的,可以拟人化——动物、植物、器物开口说话都行;可以发生在一个不写实的小世界里,也可以落在一个看似日常的微观场景中。
- 角色:不超过三个,最好两个。它们之间的关系或互动本身就要承载寓意。
- 揭示节奏:全程不出现概念名称,不使用该领域术语。只在接近结尾时,才让读者隐约意识到讲的是什么。
- 叙事纪律:让情节和细节本身承载意义,不要让角色跳出来当解说员。
- 篇幅:1000字以内。真正的寓言是精炼的,靠一个核心场景、一两次转折把意思撑起来,不需要铺陈。
- 世界观:故事是虚构的,可以拟人化——动物、植物、器物开口说话都行;可以发生在一个不写实的小世界里,也可以落在一个看似日常的微观场景中。
- 角色:不超过三个,最好两个。它们之间的关系或互动本身就要承载寓意。
- 揭示节奏:全程不出现概念名称,不使用该领域术语。只在接近结尾时,才让读者隐约意识到讲的是什么。
- 叙事纪律:让情节和细节本身承载意义,不要让角色跳出来当解说员。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/zsh | |
| # smart-edit: 智能编辑器选择器 | |
| # 根据当前终端所在的编辑器环境,自动选择正确的编辑器打开文件/文件夹 | |
| # 调试模式 (设置 SMART_EDIT_DEBUG=1 开启) | |
| debug() { | |
| [[ -n "$SMART_EDIT_DEBUG" ]] && echo "[smart-edit] $*" >&2 | |
| } | |
| # 检测当前编辑器环境并返回对应的命令 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Claude Code 项目规则配置 | |
| ## 代码修改规则 | |
| **在进行任何代码修改之前,必须遵循以下流程:** | |
| 1. 先向用户清晰地阐述修改方案,包括: | |
| - 要修改哪些文件 | |
| - 具体要做什么改动 | |
| - 修改的原因和预期效果 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # Droid CLI custom command for git commit | |
| # Usage: /git-commit [commit_message] | |
| # Function to display usage | |
| usage() { | |
| echo "Usage: /git-commit [commit_message]" | |
| echo " If commit_message is not provided, AI will generate one based on changes" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # General | |
| .DS_Store | |
| __MACOSX/ | |
| .AppleDouble | |
| .LSOverride | |
| Icon[ | |
| ] | |
| # Thumbnails | |
| ._* |
NewerOlder