Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기$pwd:
$ git log --oneline --stat
stars:68
forks:6
updated:2026년 1월 23일 10:19
SKILL.md
| name | codesyncer |
| description | AI context persistence - tags in code = permanent memory across sessions |
Claude forgets everything when the session ends. CodeSyncer makes it remember.
Use this skill on ANY project where you want AI to:
| Situation | Tag | Example |
|---|---|---|
| You inferred something | @codesyncer-inference | // @codesyncer-inference: Page size 20 (standard UX) |
| Decision after discussion | @codesyncer-decision | // @codesyncer-decision: [2024-01-15] Using JWT |
| Non-standard implementation | @codesyncer-rule | // @codesyncer-rule: any type here (no types available) |
| Needs user confirmation | @codesyncer-todo | // @codesyncer-todo: Confirm API endpoint |
| Business context | @codesyncer-context | // @codesyncer-context: GDPR requires 30-day retention |
ALWAYS ASK the user about:
❌ Bad: "I set the shipping fee to $5"
✅ Good: "What should the shipping fee be?"
When you detect these keywords, STOP and discuss before coding:
// @codesyncer-decision: [2024-01-15] Using Stripe for payments (international support)
// @codesyncer-context: Supports USD, EUR, KRW currencies
const paymentProvider = 'stripe';
// @codesyncer-inference: 5 second timeout (typical API response time)
// @codesyncer-rule: Retry max 3 times (rate limit protection)
const apiConfig = {
timeout: 5000,
retries: 3,
};
// @codesyncer-todo: Confirm discount percentage with business team
const DISCOUNT_RATE = 0.1; // 10%
Next session, when AI reads your code:
@codesyncer-decision → Knows WHY you chose Stripe@codesyncer-inference → Knows the reasoning behind values@codesyncer-todo → Knows what still needs confirmationContext survives across sessions. No more "why did we do this?"
Inferred something? → @codesyncer-inference: [reason]
Made a decision? → @codesyncer-decision: [date] [what] [why]
Special rule? → @codesyncer-rule: [explanation]
Need to confirm? → @codesyncer-todo: [what to confirm]
Business context? → @codesyncer-context: [domain knowledge]