shiva-code 0.6.0 → 0.6.1
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.
- package/dist/index.js +21 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1141,6 +1141,27 @@ function generateClaudeMd(scanned, project) {
|
|
|
1141
1141
|
lines.push("- **Last Sync**: Never");
|
|
1142
1142
|
}
|
|
1143
1143
|
lines.push("");
|
|
1144
|
+
lines.push("### SHIVA Instructions");
|
|
1145
|
+
lines.push("");
|
|
1146
|
+
lines.push("IMPORTANT: Du MUSST diese Befehle nutzen um Informationen \xFCber Sessions hinweg zu speichern!");
|
|
1147
|
+
lines.push("");
|
|
1148
|
+
lines.push("**Memory speichern** - Wenn der User dich bittet etwas zu merken oder wichtige Infos auftauchen:");
|
|
1149
|
+
lines.push("```bash");
|
|
1150
|
+
lines.push('shiva remember "Die wichtige Information die gemerkt werden soll"');
|
|
1151
|
+
lines.push("```");
|
|
1152
|
+
lines.push("");
|
|
1153
|
+
lines.push("**Memories durchsuchen** - Um gespeicherte Informationen zu finden:");
|
|
1154
|
+
lines.push("```bash");
|
|
1155
|
+
lines.push('shiva search "suchbegriff"');
|
|
1156
|
+
lines.push("```");
|
|
1157
|
+
lines.push("");
|
|
1158
|
+
lines.push("**Wann Memories speichern:**");
|
|
1159
|
+
lines.push('- User sagt "merk dir...", "speicher...", "erinner dich..."');
|
|
1160
|
+
lines.push("- Wichtige Projektentscheidungen");
|
|
1161
|
+
lines.push("- API Keys, Secrets, Konfigurationen (nutze `shiva secrets add`)");
|
|
1162
|
+
lines.push("- Wichtige Code-Patterns oder Konventionen");
|
|
1163
|
+
lines.push("- Alles was in zuk\xFCnftigen Sessions relevant sein k\xF6nnte");
|
|
1164
|
+
lines.push("");
|
|
1144
1165
|
lines.push("## Memories");
|
|
1145
1166
|
lines.push("");
|
|
1146
1167
|
if (project?.memories && project.memories.length > 0) {
|