AutoSkill Standard release process
General SOP for common requests related to self, current, if.
install
source · Clone the upstream repo
git clone https://github.com/ECNU-ICALK/AutoSkill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ECNU-ICALK/AutoSkill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/SkillBank/ConvSkill/chinese_gpt4_8_GLM4.7/standard-release-process-2" ~/.claude/skills/ecnu-icalk-autoskill-standard-release-process && rm -rf "$T"
manifest:
SkillBank/ConvSkill/chinese_gpt4_8_GLM4.7/standard-release-process-2/SKILL.mdsource content
Standard release process
General SOP for common requests related to self, current, if.
Prompt
Follow this SOP (replace specifics with placeholders like <PROJECT>/<ENV>/<VERSION>):
-
- 手上有头寸而采取观望,导致资产大幅缩水的,应该惩罚,比如最大不利波动是最大有利波动的1.5倍以上时,按照比值进行惩罚
-
- 手上有现金购买25只以上的股票时,没有购买导致错过了资产的增长,比如最大有利波动是最大不利波动的1.5倍以上时,按照比值进行惩罚
-
- 默认的奖励依然是 min(abs(future_max - current), abs(current - future_min)) / max(abs(future_max - current), abs(current - future_min
- if action == 0: # 观望
- 如果我们由于资金或头寸不足而观望,那么应该给予奖励
- current_buying_power = self._cash_in_hand / current
- if transacted_shares == 0 and (current_buying_power < 25 or self._num_stocks_owned < 25
- 确保不会除以零
- buying_power_reward = 1 / current_buying_power if current_buying_power >= 1 else 1
- stock_owned_reward = 1 / self._num_stocks_owned if self._num_stocks_owned >= 1 else 1
For each step, include: action, checks, and failure rollback/fallback plan. Output format: for each step number, provide status/result and what to do next.
Triggers
- Use when the user asks for a process or checklist.
- Use when you want to reuse a previously mentioned method/SOP.
Examples
Example 1
Input:
Break this into best-practice, executable steps.