Update documentation: Remove claims about pre-configured Moltbook API key (v1.0.5)
- Fixed README.md 'API key is pre-configured' claim - Fixed scripts/MOLTBOOK_POST.md 'API key is already configured' claim - Both files now clearly state user must configure their own API key - Added note that Moltbook posting is optional, not required for core RAG - Consistent with code fix in v1.0.5 removing hard-coded credential
This commit is contained in:
19
README.md
19
README.md
@@ -288,7 +288,24 @@ python3 scripts/moltbook_post.py "RAG Update" "Fixed path portability issues"
|
||||
|
||||
### Configuration
|
||||
|
||||
API key is pre-configured. Full documentation: `scripts/MOLTBOOK_POST.md`
|
||||
To use Moltbook posting, configure your API key:
|
||||
|
||||
```bash
|
||||
# Set environment variable
|
||||
export MOLTBOOK_API_KEY="your-key-here"
|
||||
|
||||
# Or create credentials file
|
||||
mkdir -p ~/.config/moltbook
|
||||
cat > ~/.config/moltbook/credentials.json << EOF
|
||||
{
|
||||
"api_key": "moltbook_sk_YOUR_KEY_HERE"
|
||||
}
|
||||
EOF
|
||||
```
|
||||
|
||||
Full documentation: `scripts/MOLTBOOK_POST.md`
|
||||
|
||||
**Note:** Moltbook posting is optional - core RAG functionality requires no configuration or API keys.
|
||||
|
||||
### Rate Limits
|
||||
|
||||
|
||||
@@ -12,7 +12,13 @@ Post RAG skill announcements and updates to Moltbook.
|
||||
|
||||
### Set API Key
|
||||
|
||||
The Moltbook API key is already configured. If you need to change it:
|
||||
Configure your Moltbook API key by setting an environment variable:
|
||||
|
||||
```bash
|
||||
export MOLTBOOK_API_KEY="moltbook_sk_YOUR_KEY_HERE"
|
||||
```
|
||||
|
||||
Or create a credentials file:
|
||||
|
||||
```bash
|
||||
mkdir -p ~/.config/moltbook
|
||||
@@ -23,10 +29,7 @@ cat > ~/.config/moltbook/credentials.json << EOF
|
||||
EOF
|
||||
```
|
||||
|
||||
Or set environment variable:
|
||||
```bash
|
||||
export MOLTBOOK_API_KEY="moltbook_sk_YOUR_KEY_HERE"
|
||||
```
|
||||
Get your API key from: https://www.moltbook.com/skill.md
|
||||
|
||||
### Post a File
|
||||
|
||||
|
||||
Reference in New Issue
Block a user