A curated list of LLM and AI Agent Skills for customising workflows. Works with Claude Code, Codex, Gemini CLI, and custom AI Agents. Helps operations teams automate tasks and integrate AI capabilities.
git clone https://github.com/Prat011/awesome-llm-skills.githttps://github.com/user-attachments/assets/fb10b4c7-4155-4026-95b9-b4b979a14921
Automate the generation of structured documentation from chat conversations.
Create customized workflows for document processing tasks like editing and analyzing PDFs.
Integrate AI agents with various platforms to streamline project management and task tracking.
Enhance web application testing by utilizing predefined skills for automated validation.
No install command available. Check the GitHub repository for manual installation instructions.
git clone https://github.com/Prat011/awesome-llm-skillsCopy the install command above and run it in your terminal.
Launch Claude Code, Cursor, or your preferred AI coding agent.
Use the prompt template or examples below to test the skill.
Adapt the skill to your specific use case and workflow.
Generate a step-by-step guide for automating [TASK] using [AI_TOOL]. Include specific commands, code snippets, and best practices for integration with [PLATFORM].
## Automating Social Media Posting with Claude Code
### Step 1: Set Up Your Environment
- Install the required libraries:
```bash
pip install tweepy python-dotenv
```
- Create a `.env` file with your API keys:
```env
TWITTER_API_KEY=your_api_key
TWITTER_API_SECRET=your_api_secret
```
### Step 2: Write the Automation Script
- Create a Python script `automate_tweets.py`:
```python
import os
import tweepy
from dotenv import load_dotenv
load_dotenv()
auth = tweepy.OAuthHandler(os.getenv('TWITTER_API_KEY'), os.getenv('TWITTER_API_SECRET'))
api = tweepy.API(auth)
def post_tweet(message):
api.update_status(message)
if __name__ == '__main__':
post_tweet('Hello, world! This tweet was automated using Claude Code.')
```
### Step 3: Schedule the Automation
- Use a cron job to schedule the script to run at specific intervals:
```bash
crontab -e
```
- Add the following line to schedule the script to run every day at 9 AM:
```bash
0 9 * * * /usr/bin/python3 /path/to/automate_tweets.py
```