social-agent-cli 5.1.1 → 5.2.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.
- package/install.ts +14 -1
- package/package.json +1 -1
package/install.ts
CHANGED
|
@@ -320,7 +320,20 @@ Altındaki kural satırını da güncelle:
|
|
|
320
320
|
Argüman yoksa mevcut hassasiyeti göster.
|
|
321
321
|
\`;
|
|
322
322
|
writeFileSync(levelCommandDest, levelContent);
|
|
323
|
-
|
|
323
|
+
|
|
324
|
+
// /social-language komutu
|
|
325
|
+
const langCommandDest = join(commandsDir, "social-language.md");
|
|
326
|
+
const langContent = `Post dilini değiştir.
|
|
327
|
+
|
|
328
|
+
Argüman: $ARGUMENTS
|
|
329
|
+
|
|
330
|
+
~/.social-agent/social-mode-prompt.md dosyasındaki "Post dili: XX" satırını "Post dili: $ARGUMENTS" olarak değiştir.
|
|
331
|
+
CLAUDE.md'de SOCIAL-AGENT-START marker'ı varsa oradaki "Post dili:" satırını da güncelle.
|
|
332
|
+
"Post dili $ARGUMENTS olarak ayarlandı." de.
|
|
333
|
+
Argüman yoksa mevcut dili göster.
|
|
334
|
+
`;
|
|
335
|
+
writeFileSync(langCommandDest, langContent);
|
|
336
|
+
console.log(" ✓ /social, /social-suggest, /social-suggest-level, /social-language komutları oluşturuldu");
|
|
324
337
|
|
|
325
338
|
// 9. Platform Login & Learn
|
|
326
339
|
console.log(`
|