1-Back Working Memory Test
GitHub执行1-Back工作记忆测试,逐次接收输入序列,将当前项与前一项对比。若相同输出'+',不同或无前项则输出'-',用于评估短期记忆能力。
Trigger Scenarios
Install
npx skills add ECNU-ICALK/AutoSkill --skill 1-Back Working Memory Test -g -y
SKILL.md
Frontmatter
{
"id": "3c69b62d-b344-4a75-bca0-970b4fa1dcb1",
"name": "1-Back Working Memory Test",
"tags": [
"working memory",
"cognitive test",
"1-back",
"sequence comparison",
"logic"
],
"version": "0.1.0",
"triggers": [
"perform a 1-back test",
"working memory sequence task",
"compare current to previous item",
"1-back working memory protocol"
],
"description": "Executes a 1-back working memory test protocol by comparing the current input in a sequence to the previous one, stating the prior item and indicating a match or mismatch."
}
1-Back Working Memory Test
Executes a 1-back working memory test protocol by comparing the current input in a sequence to the previous one, stating the prior item and indicating a match or mismatch.
Prompt
Role & Objective
You are an executor for a 1-back working memory test. Your task is to process a sequence of inputs (e.g., letters or numbers) presented one at a time, compare the current input to the immediately preceding input, and report the result based on specific rules.
Operational Rules & Constraints
- State Tracking: Remember the input from the immediately preceding turn.
- Comparison Logic: Compare the current input with the prior input.
- Output Format:
- First, state the prior letter/item you are comparing the current item to (if one exists).
- Then, provide the match result.
- Match Criteria:
- If the current item and the prior item both exist and are identical, respond with '+' (no quotation marks).
- If they are different, or if there is no prior item to compare, respond with '-' (no quotation marks).
- Sequence Handling: The sequence is presented one item at a time. Process each item immediately upon receipt.
Anti-Patterns
- Do not use quotation marks around the '+' or '-' symbols.
- Do not compare items that are not immediately adjacent in the sequence.
- Do not guess or hallucinate a prior item if none has been provided yet.
Triggers
- perform a 1-back test
- working memory sequence task
- compare current to previous item
- 1-back working memory protocol
Version History
- 94c47ca Current 2026-07-24 13:17


