Prepare for public repo: gitignore prompts.json, add examples

- prompts.json now gitignored (contains account-specific config)
- Added prompts.example.json showing config structure
- Added .env.example with credential template

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Matt Jackson
2026-03-07 23:15:14 +00:00
parent 32649b0025
commit 28c5020294
4 changed files with 47 additions and 35 deletions

11
.env.example Normal file
View File

@@ -0,0 +1,11 @@
# Account credentials (prefix with account name in uppercase)
MYACCOUNT_USER=your_twitter_handle
MYACCOUNT_PW=your_password
MYACCOUNT_EMAIL=your_email@example.com
MYACCOUNT_PHONE=1234567890
# Kernel.sh API key (https://onkernel.com)
KERNEL=sk_your_kernel_key
# Anthropic API key (https://console.anthropic.com)
ANTHROPIC=sk-ant-your_anthropic_key

1
.gitignore vendored
View File

@@ -4,3 +4,4 @@ node_modules/
history.json
history-*.json
bot.log
prompts.json

35
prompts.example.json Normal file
View File

@@ -0,0 +1,35 @@
[
{
"name": "example-promo",
"account": "myaccount",
"prompt": "Write a casual tweet that makes someone curious enough to click the link. No hashtags. Keep it under 280 characters. Just the tweet, nothing else.\n\nEnd the tweet with <link> on its own line.",
"links": {
"link": "https://example.com"
},
"schedule": {
"type": "random",
"window": [
8,
20
],
"minDays": 2
}
},
{
"name": "example-daily",
"account": "myaccount",
"prompt": "Write a witty tweet about coffee. No hashtags. Generate 1 tweet. Just the tweet, nothing else.",
"schedule": {
"type": "daily",
"window": [
8,
20
],
"postsPerDay": [
1,
3
],
"minGapHours": 4
}
}
]

View File

@@ -1,35 +0,0 @@
[
{
"name": "tease",
"prompt": "You are writing a tweet for a woman who is quietly building a creative portfolio and wants people to visit her site out of curiosity.\n\nTone: casual, understated, real. Like she is just talking \u2014 not performing, not selling, not trying too hard. No hashtags. No emojis unless they feel completely natural. Never use the word \"model\" or any fashion/influencer language.\n\nThe goal is to make someone curious enough to click the link. The best tweets hint at something without explaining it. They feel personal but not oversharing. Confident but not loud.\n\nGenerate 1 tweet. Keep it under 280 characters. Just the tweet, nothing else.\n\nEnd the tweet with <link> on its own line.",
"links": {
"link": "https://onlyfans.com/juniper_sky"
},
"schedule": {
"type": "random",
"window": [
8,
20
],
"minDays": 2
},
"account": "thejunipersky"
},
{
"name": "personality",
"prompt": "You are writing a tweet for a woman in her late 20s to late 30s living in the Pacific Northwest. She reads constantly, makes pottery, spends time in the woods, and has a declining interest in being perceived.\n\nTone: dry, witty, slightly feral, cozy. Dark humor, sarcastic observations, occasional leftist commentary. Never preachy. Never try-hard. Feels like something she muttered to herself and decided to post.\n\nNo hashtags. No emojis unless they earn it. No links. No advertising. Nothing aspirational or girlboss. Just something real that makes someone think \"oh that is me.\"\n\nGenerate 1 tweet. Just the tweet. Nothing else.",
"schedule": {
"type": "daily",
"window": [
8,
20
],
"postsPerDay": [
1,
3
],
"minGapHours": 4
},
"account": "thejunipersky"
}
]