用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/fabioc-aloha/Alex_Skill_Mall --skill default-fast-opt-slow命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | default-fast-opt-slow |
| description | AI/LLM features default to verbose responses, causing: |
| lastReviewed | 2026-04-30T00:00:00.000Z |
AI/LLM features default to verbose responses, causing:
Users who want depth will ask for it.
Default to the shortest useful response length. Let users opt into more.
// Default: concise
const DEFAULT_RESPONSE_LENGTH = 'concise';
// User can select
const responseLengths = {
concise: { maxTokens: 150, instruction: 'Be brief. One paragraph max.' },
standard: { maxTokens: 500, instruction: 'Provide a clear explanation.' },
detailed: { maxTokens: 2000, instruction: 'Explain thoroughly with examples.' }
};
// Persist preference
function getResponseConfig(userId) {
const pref = localStorage.getItem(`response-length-${userId}`);
return responseLengths[pref] || responseLengths[DEFAULT_RESPONSE_LENGTH];
}
<!-- Simple toggle in UI -->
<select id="response-length">
<option value="concise" selected>Quick (default)</option>
<option value="standard">Standard</option>
<option value="detailed">Detailed</option>
</select>
Once a user selects "detailed," remember it:
// Save on change
select.addEventListener('change', (e) => {
localStorage.setItem('response-length', e.target.value);
});
// Restore on load
const saved = localStorage.getItem('response-length');
if (saved) select.value = saved;
architecture ux llm performance