基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/jmagly/aiwg --skill line-memory命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
WCAG accessibility analysis for color palettes including contrast ratios, compliance checking, and remediation suggestions. Use when user needs to verify colors meet accessibility standards.
Generate, analyze, compare, export, and suggest color palettes using color theory. Use when user asks about colors, palettes, color schemes, or needs help choosing colors for a project.
Research current color trends from Pantone, architecture, film, and design. Use when user asks about trending colors, popular palettes, or wants research-backed color inspiration.
| namespace | aiwg |
| name | line-memory |
| platforms | ["all"] |
| description | Retain and retrieve small durable project facts through a bounded, recency-ordered plain-text memory |
| requires | [{"addon":"line-memory deployed with `aiwg use line-memory`"}] |
| ensures | [{"bounded-retrieval":"memory queries return only the requested slice"},{"recency-retention":"referenced memories move to the newest position"}] |
| invariants | ["never store secrets, credentials, tokens, or sensitive personal data","never inject the complete memory file into provider startup context","use line-memory CLI commands instead of directly reading the complete backing file"] |
| commandHint | {"argumentHint":"add|list|search|touch|prune|config","allowedTools":"Bash","category":"memory","orchestration":false} |
Use line memory for a small set of durable project facts that benefit from least-recently-used retention but do not need wiki pages, semantic search, citations, or a knowledge graph.
Always retrieve a bounded slice:
aiwg line-memory search "canonical tracker" --limit 5
aiwg line-memory list --limit 20
list and search refresh the returned entries by moving them to the newest
position. Pass --no-touch only for inspection that must not change recency.
Never read the complete backing file into startup context.
aiwg line-memory add "Project uses Gitea as the canonical tracker."
aiwg line-memory touch "Project uses Gitea as the canonical tracker."
aiwg line-memory prune
aiwg line-memory list --limit 20 --json
aiwg line-memory import "Reviewed fact" --source-ref wiki:path --reviewer operator --confirm
Store one concise, non-sensitive fact per entry. Do not store secrets, credentials, access tokens, private keys, or sensitive personal data.
Use stable handles from --json for governed archive/remove/supersede
operations. These mutations require --confirm; reviewed imports additionally
require --source-ref and --reviewer so provenance is not lost.
aiwg line-memory config get maxLines
aiwg line-memory config set maxLines 100
The default memory file is .aiwg/memory/line-memory.txt; configuration is
stored in .aiwg/memory/line-memory.config.json.