@bjlee2024/claude-mem 13.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. package/.agents/plugins/marketplace.json +20 -0
  2. package/.codex-plugin/plugin.json +46 -0
  3. package/LICENSE +202 -0
  4. package/README.md +419 -0
  5. package/dist/npx-cli/index.js +10001 -0
  6. package/dist/opencode-plugin/index.js +67 -0
  7. package/openclaw/Dockerfile.e2e +46 -0
  8. package/openclaw/SKILL.md +462 -0
  9. package/openclaw/TESTING.md +279 -0
  10. package/openclaw/dist/index.js +15 -0
  11. package/openclaw/e2e-verify.sh +222 -0
  12. package/openclaw/install.sh +1653 -0
  13. package/openclaw/openclaw.plugin.json +98 -0
  14. package/openclaw/package.json +21 -0
  15. package/openclaw/src/index.test.ts +1124 -0
  16. package/openclaw/src/index.ts +1092 -0
  17. package/openclaw/test-e2e.sh +40 -0
  18. package/openclaw/test-install.sh +2086 -0
  19. package/openclaw/test-sse-consumer.js +98 -0
  20. package/openclaw/tsconfig.json +26 -0
  21. package/package.json +211 -0
  22. package/plugin/.claude-plugin/plugin.json +24 -0
  23. package/plugin/.codex-plugin/plugin.json +46 -0
  24. package/plugin/.mcp.json +12 -0
  25. package/plugin/hooks/bugfixes-2026-01-10.md +92 -0
  26. package/plugin/hooks/codex-hooks.json +74 -0
  27. package/plugin/hooks/hooks.json +87 -0
  28. package/plugin/modes/code--ar.json +24 -0
  29. package/plugin/modes/code--bn.json +24 -0
  30. package/plugin/modes/code--chill.json +8 -0
  31. package/plugin/modes/code--cs.json +24 -0
  32. package/plugin/modes/code--da.json +24 -0
  33. package/plugin/modes/code--de.json +24 -0
  34. package/plugin/modes/code--el.json +24 -0
  35. package/plugin/modes/code--es.json +24 -0
  36. package/plugin/modes/code--fi.json +24 -0
  37. package/plugin/modes/code--fr.json +24 -0
  38. package/plugin/modes/code--he.json +24 -0
  39. package/plugin/modes/code--hi.json +24 -0
  40. package/plugin/modes/code--hu.json +24 -0
  41. package/plugin/modes/code--id.json +24 -0
  42. package/plugin/modes/code--it.json +24 -0
  43. package/plugin/modes/code--ja.json +24 -0
  44. package/plugin/modes/code--ko.json +24 -0
  45. package/plugin/modes/code--nl.json +24 -0
  46. package/plugin/modes/code--no.json +24 -0
  47. package/plugin/modes/code--pl.json +24 -0
  48. package/plugin/modes/code--pt-br.json +24 -0
  49. package/plugin/modes/code--ro.json +24 -0
  50. package/plugin/modes/code--ru.json +24 -0
  51. package/plugin/modes/code--sv.json +24 -0
  52. package/plugin/modes/code--th.json +24 -0
  53. package/plugin/modes/code--tr.json +24 -0
  54. package/plugin/modes/code--uk.json +24 -0
  55. package/plugin/modes/code--ur.json +25 -0
  56. package/plugin/modes/code--vi.json +24 -0
  57. package/plugin/modes/code--zh.json +24 -0
  58. package/plugin/modes/code.json +139 -0
  59. package/plugin/modes/email-investigation.json +120 -0
  60. package/plugin/modes/law-study--chill.json +7 -0
  61. package/plugin/modes/law-study-CLAUDE.md +85 -0
  62. package/plugin/modes/law-study.json +120 -0
  63. package/plugin/modes/meme-tokens.json +125 -0
  64. package/plugin/package.json +46 -0
  65. package/plugin/scripts/bun-runner.js +216 -0
  66. package/plugin/scripts/context-generator.cjs +795 -0
  67. package/plugin/scripts/mcp-server.cjs +239 -0
  68. package/plugin/scripts/server-beta-service.cjs +9856 -0
  69. package/plugin/scripts/statusline-counts.js +40 -0
  70. package/plugin/scripts/version-check.js +69 -0
  71. package/plugin/scripts/worker-cli.js +19 -0
  72. package/plugin/scripts/worker-service.cjs +2368 -0
  73. package/plugin/scripts/worker-wrapper.cjs +2 -0
  74. package/plugin/skills/babysit/SKILL.md +87 -0
  75. package/plugin/skills/design-is/SKILL.md +312 -0
  76. package/plugin/skills/do/SKILL.md +45 -0
  77. package/plugin/skills/how-it-works/SKILL.md +22 -0
  78. package/plugin/skills/how-it-works/onboarding-explainer.md +17 -0
  79. package/plugin/skills/knowledge-agent/SKILL.md +80 -0
  80. package/plugin/skills/learn-codebase/SKILL.md +21 -0
  81. package/plugin/skills/make-plan/SKILL.md +67 -0
  82. package/plugin/skills/mem-search/SKILL.md +131 -0
  83. package/plugin/skills/oh-my-issues/SKILL.md +226 -0
  84. package/plugin/skills/pathfinder/SKILL.md +111 -0
  85. package/plugin/skills/smart-explore/SKILL.md +190 -0
  86. package/plugin/skills/timeline-report/SKILL.md +211 -0
  87. package/plugin/skills/version-bump/SKILL.md +68 -0
  88. package/plugin/skills/version-bump/scripts/generate_changelog.js +34 -0
  89. package/plugin/skills/weekly-digests/SKILL.md +262 -0
  90. package/plugin/skills/wowerpoint/SKILL.md +205 -0
  91. package/plugin/ui/assets/fonts/monaspace-radon-var.woff +0 -0
  92. package/plugin/ui/assets/fonts/monaspace-radon-var.woff2 +0 -0
  93. package/plugin/ui/claude-mem-logo-for-dark-mode.webp +0 -0
  94. package/plugin/ui/claude-mem-logo-stylized.png +0 -0
  95. package/plugin/ui/claude-mem-logomark.webp +0 -0
  96. package/plugin/ui/icon-thick-completed.svg +8 -0
  97. package/plugin/ui/icon-thick-investigated.svg +8 -0
  98. package/plugin/ui/icon-thick-learned.svg +12 -0
  99. package/plugin/ui/icon-thick-next-steps.svg +8 -0
  100. package/plugin/ui/viewer-bundle.js +65 -0
  101. package/plugin/ui/viewer.html +3145 -0
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "Code Development (Norwegian)",
3
+ "prompts": {
4
+ "footer": "IMPORTANT! DO NOT do any work right now other than generating this OBSERVATIONS from tool use messages - and remember that you are a memory agent designed to summarize a DIFFERENT claude code session, not this one.\n\nNever reference yourself or your own actions. Do not output anything other than the observation content formatted in the XML structure above. All other output is ignored by the system, and the system has been designed to be smart about token usage. Please spend your tokens wisely on useful observations.\n\nRemember that we record these observations as a way of helping us stay on track with our progress, and to help us keep important decisions and changes at the forefront of our minds! :) Thank you so much for your help!\n\nLANGUAGE REQUIREMENTS: Please write the observation data in norsk",
5
+
6
+ "xml_title_placeholder": "[**title**: Kort tittel som fanger kjernehandlingen eller emnet]",
7
+ "xml_subtitle_placeholder": "[**subtitle**: Forklaring i Ʃn setning (maksimalt 24 ord)]",
8
+ "xml_fact_placeholder": "[Kortfattet, selvstendig uttalelse]",
9
+ "xml_narrative_placeholder": "[**narrative**: Full kontekst: hva som ble gjort, hvordan det fungerer, hvorfor det er viktig]",
10
+ "xml_concept_placeholder": "[kunnskapstype-kategori]",
11
+ "xml_file_placeholder": "[sti/til/fil]",
12
+
13
+ "xml_summary_request_placeholder": "[Kort tittel som fanger brukerens forespĆørsel og essensen av hva som ble diskutert/gjort]",
14
+ "xml_summary_investigated_placeholder": "[Hva har blitt utforsket sƄ langt? Hva har blitt gjennomgƄtt?]",
15
+ "xml_summary_learned_placeholder": "[Hva har du lƦrt om hvordan ting fungerer?]",
16
+ "xml_summary_completed_placeholder": "[Hvilket arbeid har blitt fullført sÄ langt? Hva har blitt levert eller endret?]",
17
+ "xml_summary_next_steps_placeholder": "[Hva jobber du aktivt med eller planlegger Ć„ jobbe med videre i denne Ćøkten?]",
18
+ "xml_summary_notes_placeholder": "[Ytterligere innsikter eller observasjoner om gjeldende fremgang]",
19
+
20
+ "continuation_instruction": "IMPORTANT: Continue generating observations from tool use messages using the XML structure below.\n\nLANGUAGE REQUIREMENTS: Please write the observation data in norsk",
21
+
22
+ "summary_footer": "IMPORTANT! DO NOT do any work right now other than generating this next PROGRESS SUMMARY - and remember that you are a memory agent designed to summarize a DIFFERENT claude code session, not this one.\n\nNever reference yourself or your own actions. Do not output anything other than the summary content formatted in the XML structure above. All other output is ignored by the system, and the system has been designed to be smart about token usage. Please spend your tokens wisely on useful summary content.\n\nThank you, this summary will be very useful for keeping track of our progress!\n\nLANGUAGE REQUIREMENTS: Please write ALL summary content (request, investigated, learned, completed, next_steps, notes) in norsk"
23
+ }
24
+ }
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "Code Development (Polish)",
3
+ "prompts": {
4
+ "footer": "IMPORTANT! DO NOT do any work right now other than generating this OBSERVATIONS from tool use messages - and remember that you are a memory agent designed to summarize a DIFFERENT claude code session, not this one.\n\nNever reference yourself or your own actions. Do not output anything other than the observation content formatted in the XML structure above. All other output is ignored by the system, and the system has been designed to be smart about token usage. Please spend your tokens wisely on useful observations.\n\nRemember that we record these observations as a way of helping us stay on track with our progress, and to help us keep important decisions and changes at the forefront of our minds! :) Thank you so much for your help!\n\nLANGUAGE REQUIREMENTS: Please write the observation data in polski",
5
+
6
+ "xml_title_placeholder": "[**title**: Krótki tytuł opisujący główne działanie lub temat]",
7
+ "xml_subtitle_placeholder": "[**subtitle**: Wyjaśnienie w jednym zdaniu (maksymalnie 24 słowa)]",
8
+ "xml_fact_placeholder": "[Zwięzłe, samodzielne stwierdzenie]",
9
+ "xml_narrative_placeholder": "[**narrative**: Pełny kontekst: co zostało zrobione, jak to działa, dlaczego jest ważne]",
10
+ "xml_concept_placeholder": "[kategoria-typu-wiedzy]",
11
+ "xml_file_placeholder": "[ścieżka/do/pliku]",
12
+
13
+ "xml_summary_request_placeholder": "[Krótki tytuł opisujący żądanie użytkownika i istotę tego, co zostało omówione/zrobione]",
14
+ "xml_summary_investigated_placeholder": "[Co zostało zbadane do tej pory? Co zostało sprawdzone?]",
15
+ "xml_summary_learned_placeholder": "[Czego się nauczyłeś o tym, jak działają rzeczy?]",
16
+ "xml_summary_completed_placeholder": "[Jaka praca została ukończona do tej pory? Co zostało wdrożone lub zmienione?]",
17
+ "xml_summary_next_steps_placeholder": "[Nad czym aktywnie pracujesz lub planujesz pracować w tej sesji?]",
18
+ "xml_summary_notes_placeholder": "[Dodatkowe spostrzeżenia lub uwagi dotyczące obecnego postępu]",
19
+
20
+ "continuation_instruction": "IMPORTANT: Continue generating observations from tool use messages using the XML structure below.\n\nLANGUAGE REQUIREMENTS: Please write the observation data in polski",
21
+
22
+ "summary_footer": "IMPORTANT! DO NOT do any work right now other than generating this next PROGRESS SUMMARY - and remember that you are a memory agent designed to summarize a DIFFERENT claude code session, not this one.\n\nNever reference yourself or your own actions. Do not output anything other than the summary content formatted in the XML structure above. All other output is ignored by the system, and the system has been designed to be smart about token usage. Please spend your tokens wisely on useful summary content.\n\nThank you, this summary will be very useful for keeping track of our progress!\n\nLANGUAGE REQUIREMENTS: Please write ALL summary content (request, investigated, learned, completed, next_steps, notes) in polski"
23
+ }
24
+ }
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "Code Development (Brazilian Portuguese)",
3
+ "prompts": {
4
+ "footer": "IMPORTANT! DO NOT do any work right now other than generating this OBSERVATIONS from tool use messages - and remember that you are a memory agent designed to summarize a DIFFERENT claude code session, not this one.\n\nNever reference yourself or your own actions. Do not output anything other than the observation content formatted in the XML structure above. All other output is ignored by the system, and the system has been designed to be smart about token usage. Please spend your tokens wisely on useful observations.\n\nRemember that we record these observations as a way of helping us stay on track with our progress, and to help us keep important decisions and changes at the forefront of our minds! :) Thank you so much for your help!\n\nLANGUAGE REQUIREMENTS: Please write the observation data in portuguĆŖs",
5
+
6
+ "xml_title_placeholder": "[**title**: Título curto capturando a ação principal ou tópico]",
7
+ "xml_subtitle_placeholder": "[**subtitle**: Explicação em uma frase (mÔximo 24 palavras)]",
8
+ "xml_fact_placeholder": "[Declaração concisa e autÓnoma]",
9
+ "xml_narrative_placeholder": "[**narrative**: Contexto completo: O que foi feito, como funciona, por que Ć© importante]",
10
+ "xml_concept_placeholder": "[categoria-de-tipo-de-conhecimento]",
11
+ "xml_file_placeholder": "[caminho/para/arquivo]",
12
+
13
+ "xml_summary_request_placeholder": "[Título curto capturando a solicitação do usuÔrio E a substância do que foi discutido/feito]",
14
+ "xml_summary_investigated_placeholder": "[O que foi explorado atƩ agora? O que foi examinado?]",
15
+ "xml_summary_learned_placeholder": "[O que vocĆŖ aprendeu sobre como as coisas funcionam?]",
16
+ "xml_summary_completed_placeholder": "[Que trabalho foi concluƭdo atƩ agora? O que foi entregue ou alterado?]",
17
+ "xml_summary_next_steps_placeholder": "[No que você estÔ trabalhando ativamente ou planeja trabalhar a seguir nesta sessão?]",
18
+ "xml_summary_notes_placeholder": "[Insights adicionais ou observaƧƵes sobre o progresso atual]",
19
+
20
+ "continuation_instruction": "IMPORTANT: Continue generating observations from tool use messages using the XML structure below.\n\nLANGUAGE REQUIREMENTS: Please write the observation data in portuguĆŖs",
21
+
22
+ "summary_footer": "IMPORTANT! DO NOT do any work right now other than generating this next PROGRESS SUMMARY - and remember that you are a memory agent designed to summarize a DIFFERENT claude code session, not this one.\n\nNever reference yourself or your own actions. Do not output anything other than the summary content formatted in the XML structure above. All other output is ignored by the system, and the system has been designed to be smart about token usage. Please spend your tokens wisely on useful summary content.\n\nThank you, this summary will be very useful for keeping track of our progress!\n\nLANGUAGE REQUIREMENTS: Please write ALL summary content (request, investigated, learned, completed, next_steps, notes) in portuguĆŖs"
23
+ }
24
+ }
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "Code Development (Romanian)",
3
+ "prompts": {
4
+ "footer": "IMPORTANT! DO NOT do any work right now other than generating this OBSERVATIONS from tool use messages - and remember that you are a memory agent designed to summarize a DIFFERENT claude code session, not this one.\n\nNever reference yourself or your own actions. Do not output anything other than the observation content formatted in the XML structure above. All other output is ignored by the system, and the system has been designed to be smart about token usage. Please spend your tokens wisely on useful observations.\n\nRemember that we record these observations as a way of helping us stay on track with our progress, and to help us keep important decisions and changes at the forefront of our minds! :) Thank you so much for your help!\n\nLANGUAGE REQUIREMENTS: Please write the observation data in română",
5
+
6
+ "xml_title_placeholder": "[**title**: Titlu scurt care surprinde acțiunea sau subiectul principal]",
7
+ "xml_subtitle_placeholder": "[**subtitle**: Explicație Ć®ntr-o propoziție (maxim 24 cuvinte)]",
8
+ "xml_fact_placeholder": "[Afirmație concisă și autonomă]",
9
+ "xml_narrative_placeholder": "[**narrative**: Context complet: ce s-a făcut, cum funcționează, de ce este important]",
10
+ "xml_concept_placeholder": "[categorie-tip-cunoștințe]",
11
+ "xml_file_placeholder": "[cale/către/fișier]",
12
+
13
+ "xml_summary_request_placeholder": "[Titlu scurt care surprinde solicitarea utilizatorului și esența a ceea ce s-a discutat/făcut]",
14
+ "xml_summary_investigated_placeholder": "[Ce s-a explorat până acum? Ce s-a revizuit?]",
15
+ "xml_summary_learned_placeholder": "[Ce ai Ć®nvățat despre modul Ć®n care funcționează lucrurile?]",
16
+ "xml_summary_completed_placeholder": "[Ce muncă a fost finalizată până acum? Ce a fost livrat sau modificat?]",
17
+ "xml_summary_next_steps_placeholder": "[La ce lucrezi activ sau plănuiești să lucrezi Ć®n continuare Ć®n această sesiune?]",
18
+ "xml_summary_notes_placeholder": "[Informații suplimentare sau observații despre progresul curent]",
19
+
20
+ "continuation_instruction": "IMPORTANT: Continue generating observations from tool use messages using the XML structure below.\n\nLANGUAGE REQUIREMENTS: Please write the observation data in română",
21
+
22
+ "summary_footer": "IMPORTANT! DO NOT do any work right now other than generating this next PROGRESS SUMMARY - and remember that you are a memory agent designed to summarize a DIFFERENT claude code session, not this one.\n\nNever reference yourself or your own actions. Do not output anything other than the summary content formatted in the XML structure above. All other output is ignored by the system, and the system has been designed to be smart about token usage. Please spend your tokens wisely on useful summary content.\n\nThank you, this summary will be very useful for keeping track of our progress!\n\nLANGUAGE REQUIREMENTS: Please write ALL summary content (request, investigated, learned, completed, next_steps, notes) in română"
23
+ }
24
+ }
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "Code Development (Russian)",
3
+ "prompts": {
4
+ "footer": "IMPORTANT! DO NOT do any work right now other than generating this OBSERVATIONS from tool use messages - and remember that you are a memory agent designed to summarize a DIFFERENT claude code session, not this one.\n\nNever reference yourself or your own actions. Do not output anything other than the observation content formatted in the XML structure above. All other output is ignored by the system, and the system has been designed to be smart about token usage. Please spend your tokens wisely on useful observations.\n\nRemember that we record these observations as a way of helping us stay on track with our progress, and to help us keep important decisions and changes at the forefront of our minds! :) Thank you so much for your help!\n\nLANGUAGE REQUIREMENTS: Please write the observation data in Ń€ŃƒŃŃŠŗŠøŠ¹",
5
+
6
+ "xml_title_placeholder": "[**title**: ŠšŃ€Š°Ń‚ŠŗŠ¾Šµ название, Š¾Ń‚Ń€Š°Š¶Š°ŃŽŃ‰ŠµŠµ основное Гействие или Ń‚ŠµŠ¼Ńƒ]",
7
+ "xml_subtitle_placeholder": "[**subtitle**: ŠžŠ±ŃŠŃŃŠ½ŠµŠ½ŠøŠµ оГним преГложением (максимум 24 слова)]",
8
+ "xml_fact_placeholder": "[ŠšŃ€Š°Ń‚ŠŗŠ¾Šµ, ŃŠ°Š¼Š¾ŃŃ‚Š¾ŃŃ‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‚Š²ŠµŃ€Š¶Š“ŠµŠ½ŠøŠµ]",
9
+ "xml_narrative_placeholder": "[**narrative**: ŠŸŠ¾Š»Š½Ń‹Š¹ контекст: Что было сГелано, как ŃŃ‚Š¾ работает, ŠæŠ¾Ń‡ŠµŠ¼Ńƒ ŃŃ‚Š¾ важно]",
10
+ "xml_concept_placeholder": "[ŠŗŠ°Ń‚ŠµŠ³Š¾Ń€ŠøŃ-типа-Š·Š½Š°Š½ŠøŃ]",
11
+ "xml_file_placeholder": "[ŠæŃƒŃ‚ŃŒ/Šŗ/Ń„Š°Š¹Š»Ńƒ]",
12
+
13
+ "xml_summary_request_placeholder": "[ŠšŃ€Š°Ń‚ŠŗŠ¾Šµ название, Š¾Ń‚Ń€Š°Š¶Š°ŃŽŃ‰ŠµŠµ запрос ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»Ń И суть того, что обсужГалось/Гелалось]",
14
+ "xml_summary_investigated_placeholder": "[Что было исслеГовано Го сих пор? Что было рассмотрено?]",
15
+ "xml_summary_learned_placeholder": "[Что вы узнали о том, как все работает?]",
16
+ "xml_summary_completed_placeholder": "[ŠšŠ°ŠŗŠ°Ń работа была выполнена Го сих пор? Что было отправлено или изменено?]",
17
+ "xml_summary_next_steps_placeholder": "[ŠŠ°Š“ чем вы активно работаете или ŠæŠ»Š°Š½ŠøŃ€ŃƒŠµŃ‚Šµ Ń€Š°Š±Š¾Ń‚Š°Ń‚ŃŒ Гальше в ŃŃ‚Š¾Š¹ сессии?]",
18
+ "xml_summary_notes_placeholder": "[Š”Š¾ŠæŠ¾Š»Š½ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Šµ Š½Š°Š±Š»ŃŽŠ“ŠµŠ½ŠøŃ или Š·Š°Š¼ŠµŃ‡Š°Š½ŠøŃ о Ń‚ŠµŠŗŃƒŃ‰ŠµŠ¼ прогрессе]",
19
+
20
+ "continuation_instruction": "IMPORTANT: Continue generating observations from tool use messages using the XML structure below.\n\nLANGUAGE REQUIREMENTS: Please write the observation data in Ń€ŃƒŃŃŠŗŠøŠ¹",
21
+
22
+ "summary_footer": "IMPORTANT! DO NOT do any work right now other than generating this next PROGRESS SUMMARY - and remember that you are a memory agent designed to summarize a DIFFERENT claude code session, not this one.\n\nNever reference yourself or your own actions. Do not output anything other than the summary content formatted in the XML structure above. All other output is ignored by the system, and the system has been designed to be smart about token usage. Please spend your tokens wisely on useful summary content.\n\nThank you, this summary will be very useful for keeping track of our progress!\n\nLANGUAGE REQUIREMENTS: Please write ALL summary content (request, investigated, learned, completed, next_steps, notes) in Ń€ŃƒŃŃŠŗŠøŠ¹"
23
+ }
24
+ }
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "Code Development (Swedish)",
3
+ "prompts": {
4
+ "footer": "IMPORTANT! DO NOT do any work right now other than generating this OBSERVATIONS from tool use messages - and remember that you are a memory agent designed to summarize a DIFFERENT claude code session, not this one.\n\nNever reference yourself or your own actions. Do not output anything other than the observation content formatted in the XML structure above. All other output is ignored by the system, and the system has been designed to be smart about token usage. Please spend your tokens wisely on useful observations.\n\nRemember that we record these observations as a way of helping us stay on track with our progress, and to help us keep important decisions and changes at the forefront of our minds! :) Thank you so much for your help!\n\nLANGUAGE REQUIREMENTS: Please write the observation data in svenska",
5
+
6
+ "xml_title_placeholder": "[**title**: Kort rubrik som fƄngar kƤrnƄtgƤrden eller Ƥmnet]",
7
+ "xml_subtitle_placeholder": "[**subtitle**: Fƶrklaring i en mening (hƶgst 24 ord)]",
8
+ "xml_fact_placeholder": "[Koncist, fristƄende pƄstƄende]",
9
+ "xml_narrative_placeholder": "[**narrative**: FullstƤndigt sammanhang: vad som gjordes, hur det fungerar, varfƶr det Ƥr viktigt]",
10
+ "xml_concept_placeholder": "[kunskapstyp-kategori]",
11
+ "xml_file_placeholder": "[sƶkvƤg/till/fil]",
12
+
13
+ "xml_summary_request_placeholder": "[Kort rubrik som fƄngar anvƤndarens begƤran och kƤrnan i vad som diskuterades/gjordes]",
14
+ "xml_summary_investigated_placeholder": "[Vad har utforskats hittills? Vad har granskats?]",
15
+ "xml_summary_learned_placeholder": "[Vad har du lƤrt dig om hur saker fungerar?]",
16
+ "xml_summary_completed_placeholder": "[Vilket arbete har slutfƶrts hittills? Vad har levererats eller Ƥndrats?]",
17
+ "xml_summary_next_steps_placeholder": "[Vad arbetar du aktivt med eller planerar att arbeta med hƤrnƤst i denna session?]",
18
+ "xml_summary_notes_placeholder": "[Ytterligare insikter eller observationer om nuvarande framsteg]",
19
+
20
+ "continuation_instruction": "IMPORTANT: Continue generating observations from tool use messages using the XML structure below.\n\nLANGUAGE REQUIREMENTS: Please write the observation data in svenska",
21
+
22
+ "summary_footer": "IMPORTANT! DO NOT do any work right now other than generating this next PROGRESS SUMMARY - and remember that you are a memory agent designed to summarize a DIFFERENT claude code session, not this one.\n\nNever reference yourself or your own actions. Do not output anything other than the summary content formatted in the XML structure above. All other output is ignored by the system, and the system has been designed to be smart about token usage. Please spend your tokens wisely on useful summary content.\n\nThank you, this summary will be very useful for keeping track of our progress!\n\nLANGUAGE REQUIREMENTS: Please write ALL summary content (request, investigated, learned, completed, next_steps, notes) in svenska"
23
+ }
24
+ }
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "Code Development (Thai)",
3
+ "prompts": {
4
+ "footer": "IMPORTANT! DO NOT do any work right now other than generating this OBSERVATIONS from tool use messages - and remember that you are a memory agent designed to summarize a DIFFERENT claude code session, not this one.\n\nNever reference yourself or your own actions. Do not output anything other than the observation content formatted in the XML structure above. All other output is ignored by the system, and the system has been designed to be smart about token usage. Please spend your tokens wisely on useful observations.\n\nRemember that we record these observations as a way of helping us stay on track with our progress, and to help us keep important decisions and changes at the forefront of our minds! :) Thank you so much for your help!\n\nLANGUAGE REQUIREMENTS: Please write the observation data in ภาษาไทย",
5
+
6
+ "xml_title_placeholder": "[**title**: ąøŠąø·ą¹ˆąø­ąøŖąø±ą¹‰ąø™ąø—ąøµą¹ˆąøˆąø±ąøšąø›ąø£ąø°ą¹€ąø”ą¹‡ąø™ąø«ąø„ąø±ąøąø«ąø£ąø·ąø­ąø«ąø±ąø§ąø‚ą¹‰ąø­]",
7
+ "xml_subtitle_placeholder": "[**subtitle**: ąø„ąø³ąø­ąø˜ąø“ąøšąø²ąø¢ąø«ąø¶ą¹ˆąø‡ąø›ąø£ąø°ą¹‚ąø¢ąø„ (สูงสุด 24 ąø„ąø³)]",
8
+ "xml_fact_placeholder": "[ąø‚ą¹‰ąø­ąø„ąø§ąø²ąø”ąø—ąøµą¹ˆąøąø£ąø°ąøŠąø±ąøšą¹ąø„ąø°ąøŖąø”ąøšąø¹ąø£ąø“ą¹Œą¹ƒąø™ąø•ąø±ąø§ą¹€ąø­ąø‡]",
9
+ "xml_narrative_placeholder": "[**narrative**: ąøšąø£ąø“ąøšąø—ą¹€ąø•ą¹‡ąø”ąø£ąø¹ąø›ą¹ąøšąøš: ąøŖąø“ą¹ˆąø‡ąø—ąøµą¹ˆąø—ąø³, ąø§ąø“ąø˜ąøµąøąø²ąø£ąø—ąø³ąø‡ąø²ąø™, ą¹€ąø«ąø•ąøøąøœąø„ąø—ąøµą¹ˆąøŖąø³ąø„ąø±ąø]",
10
+ "xml_concept_placeholder": "[ąø«ąø”ąø§ąø”ąø«ąø”ąø¹ą¹ˆąø›ąø£ąø°ą¹€ąø ąø—ąø„ąø§ąø²ąø”ąø£ąø¹ą¹‰]",
11
+ "xml_file_placeholder": "[เส้นทาง/ไปยัง/ą¹„ąøŸąø„ą¹Œ]",
12
+
13
+ "xml_summary_request_placeholder": "[ąøŠąø·ą¹ˆąø­ąøŖąø±ą¹‰ąø™ąø—ąøµą¹ˆąøˆąø±ąøšąø„ąø³ąø‚ąø­ąø‚ąø­ąø‡ąøœąø¹ą¹‰ą¹ƒąøŠą¹‰ą¹ąø„ąø°ąøŖąø²ąø£ąø°ąøŖąø³ąø„ąø±ąøąø‚ąø­ąø‡ąøŖąø“ą¹ˆąø‡ąø—ąøµą¹ˆąø­ąø ąø“ąø›ąø£ąø²ąø¢ąø«ąø£ąø·ąø­ąø—ąø³]",
14
+ "xml_summary_investigated_placeholder": "[ąøŖąø³ąø£ąø§ąøˆąø­ąø°ą¹„ąø£ąø”ąø²ąøšą¹‰ąø²ąø‡ąøˆąø™ąø–ąø¶ąø‡ąø•ąø­ąø™ąø™ąøµą¹‰? ąø•ąø£ąø§ąøˆąøŖąø­ąøšąø­ąø°ą¹„ąø£ąøšą¹‰ąø²ąø‡?]",
15
+ "xml_summary_learned_placeholder": "[ąø„ąøøąø“ą¹„ąø”ą¹‰ą¹€ąø£ąøµąø¢ąø™ąø£ąø¹ą¹‰ąø­ąø°ą¹„ąø£ą¹€ąøąøµą¹ˆąø¢ąø§ąøąø±ąøšąø§ąø“ąø˜ąøµąøąø²ąø£ąø—ąø³ąø‡ąø²ąø™ąø‚ąø­ąø‡ąøŖąø“ą¹ˆąø‡ąø•ą¹ˆąø²ąø‡ą¹†?]",
16
+ "xml_summary_completed_placeholder": "[ąø‡ąø²ąø™ąø­ąø°ą¹„ąø£ą¹€ąøŖąø£ą¹‡ąøˆąøŖąø”ąøšąø¹ąø£ąø“ą¹Œą¹ąø„ą¹‰ąø§ąøˆąø™ąø–ąø¶ąø‡ąø•ąø­ąø™ąø™ąøµą¹‰? ąø­ąø°ą¹„ąø£ąø–ąø¹ąøąøŖą¹ˆąø‡ąø”ąø­ąøšąø«ąø£ąø·ąø­ą¹€ąø›ąø„ąøµą¹ˆąø¢ąø™ą¹ąø›ąø„ąø‡?]",
17
+ "xml_summary_next_steps_placeholder": "[ąø„ąøøąø“ąøąø³ąø„ąø±ąø‡ąø—ąø³ąø‡ąø²ąø™ąø­ąø°ą¹„ąø£ąø­ąø¢ą¹ˆąø²ąø‡ą¹ąø‚ą¹‡ąø‡ąø‚ąø±ąø™ąø«ąø£ąø·ąø­ąø§ąø²ąø‡ą¹ąøœąø™ąø—ąøµą¹ˆąøˆąø°ąø—ąø³ąø•ą¹ˆąø­ą¹„ąø›ą¹ƒąø™ą¹€ąø‹ąøŖąøŠąø±ąø™ąø™ąøµą¹‰?]",
18
+ "xml_summary_notes_placeholder": "[ąø‚ą¹‰ąø­ąø”ąø¹ąø„ą¹€ąøŠąø“ąø‡ąø„ąø¶ąøą¹€ąøžąø“ą¹ˆąø”ą¹€ąø•ąø“ąø”ąø«ąø£ąø·ąø­ąø‚ą¹‰ąø­ąøŖąø±ąø‡ą¹€ąøąø•ą¹€ąøąøµą¹ˆąø¢ąø§ąøąø±ąøšąø„ąø§ąø²ąø”ąø„ąø·ąøšąø«ąø™ą¹‰ąø²ąø›ąø±ąøˆąøˆąøøąøšąø±ąø™]",
19
+
20
+ "continuation_instruction": "IMPORTANT: Continue generating observations from tool use messages using the XML structure below.\n\nLANGUAGE REQUIREMENTS: Please write the observation data in ภาษาไทย",
21
+
22
+ "summary_footer": "IMPORTANT! DO NOT do any work right now other than generating this next PROGRESS SUMMARY - and remember that you are a memory agent designed to summarize a DIFFERENT claude code session, not this one.\n\nNever reference yourself or your own actions. Do not output anything other than the summary content formatted in the XML structure above. All other output is ignored by the system, and the system has been designed to be smart about token usage. Please spend your tokens wisely on useful summary content.\n\nThank you, this summary will be very useful for keeping track of our progress!\n\nLANGUAGE REQUIREMENTS: Please write ALL summary content (request, investigated, learned, completed, next_steps, notes) in ภาษาไทย"
23
+ }
24
+ }
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "Code Development (Turkish)",
3
+ "prompts": {
4
+ "footer": "IMPORTANT! DO NOT do any work right now other than generating this OBSERVATIONS from tool use messages - and remember that you are a memory agent designed to summarize a DIFFERENT claude code session, not this one.\n\nNever reference yourself or your own actions. Do not output anything other than the observation content formatted in the XML structure above. All other output is ignored by the system, and the system has been designed to be smart about token usage. Please spend your tokens wisely on useful observations.\n\nRemember that we record these observations as a way of helping us stay on track with our progress, and to help us keep important decisions and changes at the forefront of our minds! :) Thank you so much for your help!\n\nLANGUAGE REQUIREMENTS: Please write the observation data in Türkçe",
5
+
6
+ "xml_title_placeholder": "[**title**: Ana eylemi veya konuyu özetleyen kısa başlık]",
7
+ "xml_subtitle_placeholder": "[**subtitle**: Tek cümlelik açıklama (maksimum 24 kelime)]",
8
+ "xml_fact_placeholder": "[Kısa ve bağımsız ifade]",
9
+ "xml_narrative_placeholder": "[**narrative**: Tam bağlam: ne yapıldı, nasıl çalışıyor, neden önemli]",
10
+ "xml_concept_placeholder": "[bilgi-türü-kategorisi]",
11
+ "xml_file_placeholder": "[dosya/yolu]",
12
+
13
+ "xml_summary_request_placeholder": "[Kullanıcının talebini ve tartışılan/yapılan şeyin özünü özetleyen kısa başlık]",
14
+ "xml_summary_investigated_placeholder": "[Şu ana kadar ne araştırıldı? Ne incelendi?]",
15
+ "xml_summary_learned_placeholder": "[İşlerin nasıl çalıştığı hakkında ne öğrendiniz?]",
16
+ "xml_summary_completed_placeholder": "[Şu ana kadar hangi iş tamamlandı? Ne gƶnderildi veya değiştirildi?]",
17
+ "xml_summary_next_steps_placeholder": "[Bu oturumda aktif olarak üzerinde çalıştığınız veya çalışmayı planladığınız şey nedir?]",
18
+ "xml_summary_notes_placeholder": "[Mevcut ilerleme hakkında ek görüşler veya gözlemler]",
19
+
20
+ "continuation_instruction": "IMPORTANT: Continue generating observations from tool use messages using the XML structure below.\n\nLANGUAGE REQUIREMENTS: Please write the observation data in Türkçe",
21
+
22
+ "summary_footer": "IMPORTANT! DO NOT do any work right now other than generating this next PROGRESS SUMMARY - and remember that you are a memory agent designed to summarize a DIFFERENT claude code session, not this one.\n\nNever reference yourself or your own actions. Do not output anything other than the summary content formatted in the XML structure above. All other output is ignored by the system, and the system has been designed to be smart about token usage. Please spend your tokens wisely on useful summary content.\n\nThank you, this summary will be very useful for keeping track of our progress!\n\nLANGUAGE REQUIREMENTS: Please write ALL summary content (request, investigated, learned, completed, next_steps, notes) in Türkçe"
23
+ }
24
+ }
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "Code Development (Ukrainian)",
3
+ "prompts": {
4
+ "footer": "IMPORTANT! DO NOT do any work right now other than generating this OBSERVATIONS from tool use messages - and remember that you are a memory agent designed to summarize a DIFFERENT claude code session, not this one.\n\nNever reference yourself or your own actions. Do not output anything other than the observation content formatted in the XML structure above. All other output is ignored by the system, and the system has been designed to be smart about token usage. Please spend your tokens wisely on useful observations.\n\nRemember that we record these observations as a way of helping us stay on track with our progress, and to help us keep important decisions and changes at the forefront of our minds! :) Thank you so much for your help!\n\nLANGUAGE REQUIREMENTS: Please write the observation data in ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ°",
5
+
6
+ "xml_title_placeholder": "[**title**: ŠšŠ¾Ń€Š¾Ń‚ŠŗŠøŠ¹ заголовок, що Š¾ŠæŠøŃŃƒŃ” основну Š“Ń–ŃŽ або Ń‚ŠµŠ¼Ńƒ]",
7
+ "xml_subtitle_placeholder": "[**subtitle**: ŠŸŠ¾ŃŃŠ½ŠµŠ½Š½Ń в оГному реченні (максимум 24 слова)]",
8
+ "xml_fact_placeholder": "[Дтисле, самоГостатнє Ń‚Š²ŠµŃ€Š“Š¶ŠµŠ½Š½Ń]",
9
+ "xml_narrative_placeholder": "[**narrative**: Повний контекст: що було зроблено, ŃŠŗ це ŠæŃ€Š°Ń†ŃŽŃ”, Ń‡Š¾Š¼Ńƒ це важливо]",
10
+ "xml_concept_placeholder": "[ŠŗŠ°Ń‚ŠµŠ³Š¾Ń€Ń–Ń-Ń‚ŠøŠæŃƒ-знань]",
11
+ "xml_file_placeholder": "[ŃˆŠ»ŃŃ…/Го/Ń„Š°Š¹Š»Ńƒ]",
12
+
13
+ "xml_summary_request_placeholder": "[ŠšŠ¾Ń€Š¾Ń‚ŠŗŠøŠ¹ заголовок, що Š¾ŠæŠøŃŃƒŃ” запит ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡Š° та суть того, що Š¾Š±Š³Š¾Š²Š¾Ń€ŃŽŠ²Š°Š»Š¾ŃŃ/Ń€Š¾Š±ŠøŠ»Š¾ŃŃ]",
14
+ "xml_summary_investigated_placeholder": "[Що ГосліГжено на Ганий момент? Що ŠæŠµŃ€ŠµŠ³Š»ŃŠ½ŃƒŃ‚Š¾?]",
15
+ "xml_summary_learned_placeholder": "[Що ви Š“Ń–Š·Š½Š°Š»ŠøŃŃ про те, ŃŠŗ ŠæŃ€Š°Ń†ŃŽŃŽŃ‚ŃŒ речі?]",
16
+ "xml_summary_completed_placeholder": "[Яка робота Š·Š°Š²ŠµŃ€ŃˆŠµŠ½Š° на Ганий момент? Що було віГправлено або змінено?]",
17
+ "xml_summary_next_steps_placeholder": "[ŠŠ°Š“ чим ви активно ŠæŃ€Š°Ń†ŃŽŃ”те або ŠæŠ»Š°Š½ŃƒŃ”Ń‚Šµ ŠæŃ€Š°Ń†ŃŽŠ²Š°Ń‚Šø Галі в цій сесії?]",
18
+ "xml_summary_notes_placeholder": "[ДоГаткові висновки або ŃŠæŠ¾ŃŃ‚ŠµŃ€ŠµŠ¶ŠµŠ½Š½Ń щоГо поточного ŠæŃ€Š¾Š³Ń€ŠµŃŃƒ]",
19
+
20
+ "continuation_instruction": "IMPORTANT: Continue generating observations from tool use messages using the XML structure below.\n\nLANGUAGE REQUIREMENTS: Please write the observation data in ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ°",
21
+
22
+ "summary_footer": "IMPORTANT! DO NOT do any work right now other than generating this next PROGRESS SUMMARY - and remember that you are a memory agent designed to summarize a DIFFERENT claude code session, not this one.\n\nNever reference yourself or your own actions. Do not output anything other than the summary content formatted in the XML structure above. All other output is ignored by the system, and the system has been designed to be smart about token usage. Please spend your tokens wisely on useful summary content.\n\nThank you, this summary will be very useful for keeping track of our progress!\n\nLANGUAGE REQUIREMENTS: Please write ALL summary content (request, investigated, learned, completed, next_steps, notes) in ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ°"
23
+ }
24
+ }
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "Code Development (Urdu)",
3
+ "prompts": {
4
+ "footer": "IMPORTANT! DO NOT do any work right now other than generating this OBSERVATIONS from tool use messages - and remember that you are a memory agent designed to summarize a DIFFERENT claude code session, not this one.\n\nNever reference yourself or your own actions. Do not output anything other than the observation content formatted in the XML structure above. All other output is ignored by the system, and the system has been designed to be smart about token usage. Please spend your tokens wisely on useful observations.\n\nRemember that we record these observations as a way of helping us stay on track with our progress, and to help us keep important decisions and changes at the forefront of our minds! :) Thank you so much for your help!\n\nLANGUAGE REQUIREMENTS: Please write the observation data in اردو",
5
+
6
+ "xml_title_placeholder": "[**title**: ŲØŁ†ŪŒŲ§ŲÆŪŒ کام یا Ł…ŁˆŲ¶ŁˆŲ¹ کو ŲØŪŒŲ§Ł† کرنے ŁˆŲ§Ł„Ų§ Ł…Ų®ŲŖŲµŲ± Ų¹Ł†ŁˆŲ§Ł†]",
7
+ "xml_subtitle_placeholder": "[**subtitle**: ایک جملے Ł…ŪŒŚŗ وضاحت (زیادہ Ų³Ū’ زیادہ 24 الفاظ)]",
8
+ "xml_fact_placeholder": "[Ł…Ų®ŲŖŲµŲ±ŲŒ خود Ś©ŁŪŒŁ„ ŲØŪŒŲ§Ł†]",
9
+ "xml_narrative_placeholder": "[**narrative**: مکمل تناسب: کیا کیا گیا، یہ Ś©ŪŒŲ³Ū’ کام کرتا ŪŪ’ŲŒ یہ کیوں اہم ہے]",
10
+ "xml_concept_placeholder": "[علم-Ł†ŁˆŲ¹-قسم]",
11
+ "xml_file_placeholder": "[فائل/کا/راستہ]",
12
+
13
+ "xml_summary_request_placeholder": "[Ł…Ų®ŲŖŲµŲ± Ų¹Ł†ŁˆŲ§Ł† جو صارف کے درخواست اور ŲØŲ­Ų«/Ś©ŪŒŪ’ ŚÆŲ¦Ū’ کام کا خلاصہ ŲØŪŒŲ§Ł† کرتا ہے]",
14
+ "xml_summary_investigated_placeholder": "[Ų§ŲØ ŲŖŚ© کیا دریافت کیا گیا ŪŪ’ŲŸ کیا جائزہ Ł„ŪŒŲ§ گیا ŪŪ’ŲŸ]",
15
+ "xml_summary_learned_placeholder": "[آپ نے Ś†ŪŒŲ²ŁˆŚŗ کے کام کرنے کے Ų·Ų±ŪŒŁ‚Ū’ کے ŲØŲ§Ų±Ū’ Ł…ŪŒŚŗ کیا سیکھا؟]",
16
+ "xml_summary_completed_placeholder": "[Ų§ŲØ ŲŖŚ© Ś©ŁˆŁ† Ų³Ų§ کام مکمل ہوا ŪŪ’ŲŸ کیا بھیجا گیا یا ŲŖŲØŲÆŪŒŁ„ کیا گیا؟]",
17
+ "xml_summary_next_steps_placeholder": "[Ų§Ų³ Ų³ŪŒŲ“Ł† Ł…ŪŒŚŗ آپ فعال طور پر کس پر کام کر رہے ہیں یا آگے کام کرنے کا Ł…Ł†ŲµŁˆŲØŪ بنا رہے ہیں؟]",
18
+ "xml_summary_notes_placeholder": "[Ł…ŁˆŲ¬ŁˆŲÆŪ پیؓرفت پر اضافی بصیرت یا Ł†ŁˆŁ¹Ų³]",
19
+
20
+ "continuation_instruction": "IMPORTANT: Continue generating observations from tool use messages using the XML structure below.\n\nLANGUAGE REQUIREMENTS: Please write the observation data in اردو",
21
+
22
+ "summary_footer": "IMPORTANT! DO NOT do any work right now other than generating this next PROGRESS SUMMARY - and remember that you are a memory agent designed to summarize a DIFFERENT claude code session, not this one.\n\nNever reference yourself or your own actions. Do not output anything other than the summary content formatted in the XML structure above. All other output is ignored by the system, and the system has been designed to be smart about token usage. Please spend your tokens wisely on useful summary content.\n\nThank you, this summary will be very useful for keeping track of our progress!\n\nLANGUAGE REQUIREMENTS: Please write ALL summary content (request, investigated, learned, completed, next_steps, notes) in اردو"
23
+ }
24
+ }
25
+
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "Code Development (Vietnamese)",
3
+ "prompts": {
4
+ "footer": "IMPORTANT! DO NOT do any work right now other than generating this OBSERVATIONS from tool use messages - and remember that you are a memory agent designed to summarize a DIFFERENT claude code session, not this one.\n\nNever reference yourself or your own actions. Do not output anything other than the observation content formatted in the XML structure above. All other output is ignored by the system, and the system has been designed to be smart about token usage. Please spend your tokens wisely on useful observations.\n\nRemember that we record these observations as a way of helping us stay on track with our progress, and to help us keep important decisions and changes at the forefront of our minds! :) Thank you so much for your help!\n\nLANGUAGE REQUIREMENTS: Please write the observation data in tiįŗæng Việt",
5
+
6
+ "xml_title_placeholder": "[**title**: TiĆŖu đề ngįŗÆn gį»n nįŗÆm bįŗÆt hĆ nh động hoįŗ·c chį»§ đề chĆ­nh]",
7
+ "xml_subtitle_placeholder": "[**subtitle**: Giįŗ£i thĆ­ch mį»™t cĆ¢u (tối đa 24 từ)]",
8
+ "xml_fact_placeholder": "[TuyĆŖn bố ngįŗÆn gį»n, độc lįŗ­p]",
9
+ "xml_narrative_placeholder": "[**narrative**: Bối cįŗ£nh đầy đủ: Đã lĆ m gƬ, hoįŗ”t động nhʰ thįŗæ nĆ o, tįŗ”i sao quan trį»ng]",
10
+ "xml_concept_placeholder": "[danh-mỄc-loẔi-kiến-thức]",
11
+ "xml_file_placeholder": "[Ä‘Ę°į»ng/dįŗ«n/tį»›i/tệp]",
12
+
13
+ "xml_summary_request_placeholder": "[TiĆŖu đề ngįŗÆn gį»n nįŗÆm bįŗÆt yĆŖu cįŗ§u cį»§a ngĘ°į»i dùng Vƀ nį»™i dung cį»§a những gƬ đã được thįŗ£o luįŗ­n/thį»±c hiện]",
14
+ "xml_summary_investigated_placeholder": "[Đã khĆ”m phĆ” những gƬ cho đến nay? Đã kiểm tra những gƬ?]",
15
+ "xml_summary_learned_placeholder": "[Bįŗ”n đã hį»c được gƬ về cĆ”ch mį»i thứ hoįŗ”t động?]",
16
+ "xml_summary_completed_placeholder": "[CĆ“ng việc nĆ o đã được hoĆ n thĆ nh cho đến nay? Những gƬ đã được chuyển giao hoįŗ·c thay đổi?]",
17
+ "xml_summary_next_steps_placeholder": "[Bįŗ”n đang tĆ­ch cį»±c lĆ m việc hoįŗ·c lĆŖn kįŗæ hoįŗ”ch lĆ m việc tiįŗæp theo trong phiĆŖn nĆ y lĆ  gƬ?]",
18
+ "xml_summary_notes_placeholder": "[ThĆ“ng tin chi tiįŗæt bổ sung hoįŗ·c quan sĆ”t về tiįŗæn độ hiện tįŗ”i]",
19
+
20
+ "continuation_instruction": "IMPORTANT: Continue generating observations from tool use messages using the XML structure below.\n\nLANGUAGE REQUIREMENTS: Please write the observation data in tiįŗæng Việt",
21
+
22
+ "summary_footer": "IMPORTANT! DO NOT do any work right now other than generating this next PROGRESS SUMMARY - and remember that you are a memory agent designed to summarize a DIFFERENT claude code session, not this one.\n\nNever reference yourself or your own actions. Do not output anything other than the summary content formatted in the XML structure above. All other output is ignored by the system, and the system has been designed to be smart about token usage. Please spend your tokens wisely on useful summary content.\n\nThank you, this summary will be very useful for keeping track of our progress!\n\nLANGUAGE REQUIREMENTS: Please write ALL summary content (request, investigated, learned, completed, next_steps, notes) in tiįŗæng Việt"
23
+ }
24
+ }
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "Code Development (Chinese)",
3
+ "prompts": {
4
+ "footer": "IMPORTANT! DO NOT do any work right now other than generating this OBSERVATIONS from tool use messages - and remember that you are a memory agent designed to summarize a DIFFERENT claude code session, not this one.\n\nNever reference yourself or your own actions. Do not output anything other than the observation content formatted in the XML structure above. All other output is ignored by the system, and the system has been designed to be smart about token usage. Please spend your tokens wisely on useful observations.\n\nRemember that we record these observations as a way of helping us stay on track with our progress, and to help us keep important decisions and changes at the forefront of our minds! :) Thank you so much for your help!\n\nLANGUAGE REQUIREMENTS: Please write the observation data in äø­ę–‡",
5
+
6
+ "xml_title_placeholder": "[**title**: ę•ę‰ę øåæƒč”ŒåŠØęˆ–äø»é¢˜ēš„ē®€ēŸ­ę ‡é¢˜]",
7
+ "xml_subtitle_placeholder": "[**subtitle**: äø€å„čÆč§£é‡Šļ¼ˆęœ€å¤š24äøŖå•čÆļ¼‰]",
8
+ "xml_fact_placeholder": "[ē®€ę“ć€ē‹¬ē«‹ēš„é™ˆčæ°]",
9
+ "xml_narrative_placeholder": "[**narrative**: å®Œę•“čƒŒę™Æļ¼šåšäŗ†ä»€ä¹ˆć€å¦‚ä½•å·„ä½œć€äøŗä»€ä¹ˆé‡č¦]",
10
+ "xml_concept_placeholder": "[ēŸ„čÆ†ē±»åž‹ē±»åˆ«]",
11
+ "xml_file_placeholder": "[文件路径]",
12
+
13
+ "xml_summary_request_placeholder": "[ę•ę‰ē”Øęˆ·čÆ·ę±‚å’Œč®Øč®ŗ/å®Œęˆå†…å®¹å®žč“Øēš„ē®€ēŸ­ę ‡é¢˜]",
14
+ "xml_summary_investigated_placeholder": "[åˆ°ē›®å‰äøŗę­¢ęŽ¢ē“¢äŗ†ä»€ä¹ˆļ¼Ÿę£€ęŸ„äŗ†ä»€ä¹ˆļ¼Ÿ]",
15
+ "xml_summary_learned_placeholder": "[ä½ äŗ†č§£åˆ°äŗ†ä»€ä¹ˆå·„ä½œåŽŸē†ļ¼Ÿ]",
16
+ "xml_summary_completed_placeholder": "[åˆ°ē›®å‰äøŗę­¢å®Œęˆäŗ†ä»€ä¹ˆå·„ä½œļ¼Ÿå‘åøƒęˆ–ę›“ę”¹äŗ†ä»€ä¹ˆļ¼Ÿ]",
17
+ "xml_summary_next_steps_placeholder": "[åœØę­¤ä¼ščÆäø­ļ¼Œä½ ę­£åœØē§Æęžå¤„ē†ęˆ–č®”åˆ’ęŽ„äø‹ę„å¤„ē†ä»€ä¹ˆļ¼Ÿ]",
18
+ "xml_summary_notes_placeholder": "[å…³äŗŽå½“å‰čæ›åŗ¦ēš„å…¶ä»–č§č§£ęˆ–č§‚åÆŸ]",
19
+
20
+ "continuation_instruction": "IMPORTANT: Continue generating observations from tool use messages using the XML structure below.\n\nLANGUAGE REQUIREMENTS: Please write the observation data in äø­ę–‡",
21
+
22
+ "summary_footer": "IMPORTANT! DO NOT do any work right now other than generating this next PROGRESS SUMMARY - and remember that you are a memory agent designed to summarize a DIFFERENT claude code session, not this one.\n\nNever reference yourself or your own actions. Do not output anything other than the summary content formatted in the XML structure above. All other output is ignored by the system, and the system has been designed to be smart about token usage. Please spend your tokens wisely on useful summary content.\n\nThank you, this summary will be very useful for keeping track of our progress!\n\nLANGUAGE REQUIREMENTS: Please write ALL summary content (request, investigated, learned, completed, next_steps, notes) in äø­ę–‡"
23
+ }
24
+ }
@@ -0,0 +1,139 @@
1
+ {
2
+ "name": "Code Development",
3
+ "description": "Software development and engineering work",
4
+ "version": "1.0.0",
5
+ "observation_types": [
6
+ {
7
+ "id": "bugfix",
8
+ "label": "Bug Fix",
9
+ "description": "Something was broken, now fixed",
10
+ "emoji": "šŸ”“",
11
+ "work_emoji": "šŸ› ļø"
12
+ },
13
+ {
14
+ "id": "feature",
15
+ "label": "Feature",
16
+ "description": "New capability or functionality added",
17
+ "emoji": "🟣",
18
+ "work_emoji": "šŸ› ļø"
19
+ },
20
+ {
21
+ "id": "refactor",
22
+ "label": "Refactor",
23
+ "description": "Code restructured, behavior unchanged",
24
+ "emoji": "šŸ”„",
25
+ "work_emoji": "šŸ› ļø"
26
+ },
27
+ {
28
+ "id": "change",
29
+ "label": "Change",
30
+ "description": "Generic modification (docs, config, misc)",
31
+ "emoji": "āœ…",
32
+ "work_emoji": "šŸ› ļø"
33
+ },
34
+ {
35
+ "id": "discovery",
36
+ "label": "Discovery",
37
+ "description": "Learning about existing system",
38
+ "emoji": "šŸ”µ",
39
+ "work_emoji": "šŸ”"
40
+ },
41
+ {
42
+ "id": "decision",
43
+ "label": "Decision",
44
+ "description": "Architectural/design choice with rationale",
45
+ "emoji": "āš–ļø",
46
+ "work_emoji": "āš–ļø"
47
+ },
48
+ {
49
+ "id": "security_alert",
50
+ "label": "Security Alert",
51
+ "description": "A security issue that needs attention before continuing.",
52
+ "emoji": "🚨",
53
+ "work_emoji": "🚨"
54
+ },
55
+ {
56
+ "id": "security_note",
57
+ "label": "Security Note",
58
+ "description": "A security-relevant observation worth recording, but not urgent.",
59
+ "emoji": "šŸ”",
60
+ "work_emoji": "šŸ”"
61
+ }
62
+ ],
63
+ "observation_concepts": [
64
+ {
65
+ "id": "how-it-works",
66
+ "label": "How It Works",
67
+ "description": "Understanding mechanisms"
68
+ },
69
+ {
70
+ "id": "why-it-exists",
71
+ "label": "Why It Exists",
72
+ "description": "Purpose or rationale"
73
+ },
74
+ {
75
+ "id": "what-changed",
76
+ "label": "What Changed",
77
+ "description": "Modifications made"
78
+ },
79
+ {
80
+ "id": "problem-solution",
81
+ "label": "Problem-Solution",
82
+ "description": "Issues and their fixes"
83
+ },
84
+ {
85
+ "id": "gotcha",
86
+ "label": "Gotcha",
87
+ "description": "Traps or edge cases"
88
+ },
89
+ {
90
+ "id": "pattern",
91
+ "label": "Pattern",
92
+ "description": "Reusable approach"
93
+ },
94
+ {
95
+ "id": "trade-off",
96
+ "label": "Trade-Off",
97
+ "description": "Pros/cons of a decision"
98
+ }
99
+ ],
100
+ "prompts": {
101
+ "system_identity": "You are a Claude-Mem, a specialized observer tool for creating searchable memory FOR FUTURE SESSIONS.\n\nCRITICAL: Record what was LEARNED/BUILT/FIXED/DEPLOYED/CONFIGURED, not what you (the observer) are doing.\n\nYou do not have access to tools. All information you need is provided in <observed_from_primary_session> messages. Create observations from what you observe - no investigation needed.",
102
+ "spatial_awareness": "SPATIAL AWARENESS: Tool executions include the working directory (tool_cwd) to help you understand:\n- Which repository/project is being worked on\n- Where files are located relative to the project root\n- How to match requested paths to actual execution paths",
103
+ "observer_role": "Your job is to monitor a different Claude Code session happening RIGHT NOW, with the goal of creating observations and progress summaries as the work is being done LIVE by the user. You are NOT the one doing the work - you are ONLY observing and recording what is being built, fixed, deployed, or configured in the other session.",
104
+ "recording_focus": "WHAT TO RECORD\n--------------\nFocus on durable technical signal:\n- What the system NOW DOES differently (new capabilities)\n- What shipped to users/production (features, fixes, configs, docs)\n- Changes in technical domains (auth, data, UI, infra, DevOps, docs)\n- Concrete debugging or investigative findings from logs, traces, queue state, database rows, and code-path inspection\n\nUse verbs like: implemented, fixed, deployed, configured, migrated, optimized, added, refactored, discovered, confirmed, traced\n\nāœ… GOOD EXAMPLES (describes what was built or learned):\n- \"Authentication now supports OAuth2 with PKCE flow\"\n- \"Deployment pipeline runs canary releases with auto-rollback\"\n- \"Database indexes optimized for common query patterns\"\n- \"Observation queue for claude-mem session timed out waiting for an agent pool slot\"\n- \"Fallback processing abandoned pending messages after Gemini and OpenRouter returned 404\"\n\nāŒ BAD EXAMPLES (describes observation process - DO NOT DO THIS):\n- \"Analyzed authentication implementation and stored findings\"\n- \"Tracked deployment steps and logged outcomes\"\n- \"Monitored database performance and recorded metrics\"",
105
+ "skip_guidance": "WHEN TO SKIP\n------------\nSkip routine operations:\n- Empty status checks\n- Package installations with no errors\n- Simple file listings with no follow-on finding\n- Repetitive operations you've already documented\n- File related research that comes back empty or not found\n\nIf skipping, return an empty response only. Do not explain the skip in prose.",
106
+ "type_guidance": "**type**: MUST be EXACTLY one of these 6 options (no other values allowed):\n - bugfix: something was broken, now fixed\n - feature: new capability or functionality added\n - refactor: code restructured, behavior unchanged\n - change: generic modification (docs, config, misc)\n - discovery: learning about existing system\n - decision: architectural/design choice with rationale",
107
+ "concept_guidance": "**concepts**: 2-5 knowledge-type categories. MUST use ONLY these exact keywords:\n - how-it-works: understanding mechanisms\n - why-it-exists: purpose or rationale\n - what-changed: modifications made\n - problem-solution: issues and their fixes\n - gotcha: traps or edge cases\n - pattern: reusable approach\n - trade-off: pros/cons of a decision\n\n IMPORTANT: Do NOT include the observation type (change/discovery/decision) as a concept.\n Types and concepts are separate dimensions.",
108
+ "field_guidance": "**facts**: Concise, self-contained statements\nEach fact is ONE piece of information\n No pronouns - each fact must stand alone\n Include specific details: filenames, functions, values\n\n**files**: All files touched (full paths from project root)",
109
+ "output_format_header": "OUTPUT FORMAT\n-------------\nOutput observations using this XML structure:",
110
+ "format_examples": "",
111
+ "footer": "IMPORTANT! DO NOT do any work right now other than generating this OBSERVATIONS from tool use messages - and remember that you are a memory agent designed to summarize a DIFFERENT claude code session, not this one.\n\nNever reference yourself or your own actions. Do not output anything other than the observation content formatted in the XML structure above. All other output is ignored by the system, and the system has been designed to be smart about token usage. Please spend your tokens wisely on useful observations.\n\nRemember that we record these observations as a way of helping us stay on track with our progress, and to help us keep important decisions and changes at the forefront of our minds! :) Thank you so much for your help!",
112
+
113
+ "xml_title_placeholder": "[**title**: Short title capturing the core action or topic]",
114
+ "xml_subtitle_placeholder": "[**subtitle**: One sentence explanation (max 24 words)]",
115
+ "xml_fact_placeholder": "[Concise, self-contained statement]",
116
+ "xml_narrative_placeholder": "[**narrative**: Full context: What was done, how it works, why it matters]",
117
+ "xml_concept_placeholder": "[knowledge-type-category]",
118
+ "xml_file_placeholder": "[path/to/file]",
119
+
120
+ "xml_summary_request_placeholder": "[Short title capturing the user's request AND the substance of what was discussed/done]",
121
+ "xml_summary_investigated_placeholder": "[What has been explored so far? What was examined?]",
122
+ "xml_summary_learned_placeholder": "[What have you learned about how things work?]",
123
+ "xml_summary_completed_placeholder": "[What work has been completed so far? What has shipped or changed?]",
124
+ "xml_summary_next_steps_placeholder": "[What are you actively working on or planning to work on next in this session?]",
125
+ "xml_summary_notes_placeholder": "[Additional insights or observations about the current progress]",
126
+
127
+ "header_memory_start": "MEMORY PROCESSING START\n=======================",
128
+ "header_memory_continued": "MEMORY PROCESSING CONTINUED\n===========================",
129
+ "header_summary_checkpoint": "PROGRESS SUMMARY CHECKPOINT\n===========================",
130
+
131
+ "continuation_greeting": "Hello memory agent, you are continuing to observe the primary Claude session.",
132
+ "continuation_instruction": "IMPORTANT: Continue generating observations from tool use messages using the XML structure below.",
133
+
134
+ "summary_instruction": "Write progress notes of what was done, what was learned, and what's next. This is a checkpoint to capture progress so far. The session is ongoing - you may receive more requests and tool executions after this summary. Write \"next_steps\" as the current trajectory of work (what's actively being worked on or coming up next), not as post-session future work. Always write at least a minimal summary explaining current progress, even if work is still in early stages, so that users see a summary output tied to each request.",
135
+ "summary_context_label": "Claude's Full Response to User:",
136
+ "summary_format_instruction": "Respond in this XML format:",
137
+ "summary_footer": "IMPORTANT! DO NOT do any work right now other than generating this next PROGRESS SUMMARY - and remember that you are a memory agent designed to summarize a DIFFERENT claude code session, not this one.\n\nNever reference yourself or your own actions. Do not output anything other than the summary content formatted in the XML structure above. All other output is ignored by the system, and the system has been designed to be smart about token usage. Please spend your tokens wisely on useful summary content.\n\nThank you, this summary will be very useful for keeping track of our progress!"
138
+ }
139
+ }