mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-17 23:09:35 +00:00
feat: community growth kit + Spectrum analysis + video production guide
Three parallel deliverables: 1. Community Growth (system-prompts repo): - CONTRIBUTING.md with clear submission guidelines - Issue templates: new-prompt.yml, update-prompt.yml - PR template with checklist → Makes it easy for contributors to submit prompts → more stars 2. Spectrum Digital AI Competitive Analysis: - Full feature comparison (Dealix 11 vs Spectrum 5) - Spectrum is a GoHighLevel white-label, no proprietary AI - Dealix advantages: Arabic-first, PDPL, enterprise CRM, multi-LLM - 5 competitive messages for Saudi market positioning - Gap analysis with P0/P1/P2 prioritization 3. Video Production Guide: - Tool ranking: Veo 3.1 > Kling 3.0 > Runway Gen-4.5 - Saudi voiceover: Nabarati > Lahajati > ElevenLabs - Complete 25-sec script in Saudi dialect - Shot-by-shot prompts for 3 scenes - Full production workflow https://claude.ai/code/session_01W1rJthWDkasijTdXCfxVHs
This commit is contained in:
parent
4d385f0482
commit
8760078f45
48
.github/ISSUE_TEMPLATE/new-prompt.yml
vendored
Normal file
48
.github/ISSUE_TEMPLATE/new-prompt.yml
vendored
Normal file
@ -0,0 +1,48 @@
|
||||
name: "New AI Tool Prompt"
|
||||
description: "Submit or request a new AI tool's system prompt"
|
||||
title: "[New] "
|
||||
labels: ["new-prompt"]
|
||||
body:
|
||||
- type: input
|
||||
id: tool_name
|
||||
attributes:
|
||||
label: Tool Name
|
||||
placeholder: "e.g., Cursor, Devin, GitHub Copilot"
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
id: tool_url
|
||||
attributes:
|
||||
label: Tool URL
|
||||
placeholder: "https://..."
|
||||
validations:
|
||||
required: true
|
||||
- type: dropdown
|
||||
id: type
|
||||
attributes:
|
||||
label: Submission Type
|
||||
options:
|
||||
- "I have the prompt and will submit a PR"
|
||||
- "I found a prompt but need help formatting"
|
||||
- "Requesting someone to extract this prompt"
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: prompt_content
|
||||
attributes:
|
||||
label: Prompt Content (if you have it)
|
||||
description: "Paste the system prompt here, or describe where you found it"
|
||||
render: markdown
|
||||
- type: checkboxes
|
||||
id: includes
|
||||
attributes:
|
||||
label: What's included?
|
||||
options:
|
||||
- label: System prompt
|
||||
- label: Tool/function definitions
|
||||
- label: Model configuration
|
||||
- type: input
|
||||
id: date_captured
|
||||
attributes:
|
||||
label: Date Captured
|
||||
placeholder: "2026-04-23"
|
||||
29
.github/ISSUE_TEMPLATE/update-prompt.yml
vendored
Normal file
29
.github/ISSUE_TEMPLATE/update-prompt.yml
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
name: "Update Existing Prompt"
|
||||
description: "Report that an existing AI tool's prompt has changed"
|
||||
title: "[Update] "
|
||||
labels: ["update"]
|
||||
body:
|
||||
- type: input
|
||||
id: tool_name
|
||||
attributes:
|
||||
label: Tool Name
|
||||
placeholder: "e.g., Cursor, Claude Code"
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: changes
|
||||
attributes:
|
||||
label: What Changed?
|
||||
description: "Describe what's different in the new version"
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: new_prompt
|
||||
attributes:
|
||||
label: Updated Prompt Content
|
||||
render: markdown
|
||||
- type: input
|
||||
id: date_captured
|
||||
attributes:
|
||||
label: Date of New Version
|
||||
placeholder: "2026-04-23"
|
||||
21
.github/pull_request_template.md
vendored
Normal file
21
.github/pull_request_template.md
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
## What's in this PR?
|
||||
|
||||
- [ ] New AI tool prompt
|
||||
- [ ] Updated existing prompt
|
||||
- [ ] Other improvement
|
||||
|
||||
## Tool Details
|
||||
|
||||
| Field | Value |
|
||||
|-------|-------|
|
||||
| Tool Name | |
|
||||
| Source | |
|
||||
| Date Captured | |
|
||||
| Includes Tools/Functions | Yes / No |
|
||||
|
||||
## Checklist
|
||||
|
||||
- [ ] Prompt is the real system prompt (not a guess)
|
||||
- [ ] No API keys or credentials included
|
||||
- [ ] Files are in a properly named folder
|
||||
- [ ] PR title follows format: `Add: [Tool]` or `Update: [Tool]`
|
||||
74
CONTRIBUTING.md
Normal file
74
CONTRIBUTING.md
Normal file
@ -0,0 +1,74 @@
|
||||
# Contributing to System Prompts & Models of AI Tools
|
||||
|
||||
Thanks for your interest in contributing! This is the largest collection of real AI system prompts and tool definitions on GitHub. Here's how you can help grow it.
|
||||
|
||||
## How to Contribute
|
||||
|
||||
### 1. Add a New AI Tool's System Prompt
|
||||
|
||||
Found a system prompt that's not in the collection yet? Submit it!
|
||||
|
||||
**Steps:**
|
||||
1. Fork this repo
|
||||
2. Create a folder: `Tool Name/`
|
||||
3. Add the prompt as `system-prompt.md` (or `.txt`)
|
||||
4. If the tool has function/tool definitions, add them as `tools.json` or `tools.md`
|
||||
5. Open a PR with title: `Add: [Tool Name] system prompt`
|
||||
|
||||
**Format your PR description:**
|
||||
```
|
||||
## Tool: [Name]
|
||||
- **Source:** [How you obtained it — e.g., browser DevTools, API inspection, documentation]
|
||||
- **Date captured:** [YYYY-MM-DD]
|
||||
- **Model/Version:** [e.g., GPT-4o, Claude 3.5 Sonnet]
|
||||
- **Includes tools:** [Yes/No]
|
||||
```
|
||||
|
||||
### 2. Update an Existing Prompt
|
||||
|
||||
AI tools update their prompts frequently. If you notice a prompt has changed:
|
||||
|
||||
1. Update the file with the new version
|
||||
2. In your PR, note what changed and when
|
||||
3. If possible, keep the old version in a `previous-versions/` subfolder
|
||||
|
||||
### 3. Report a Missing Tool
|
||||
|
||||
Don't have the prompt yourself but know a tool is missing? Open an issue with:
|
||||
- Tool name and URL
|
||||
- Why it's notable (user count, unique features, etc.)
|
||||
|
||||
## What We're Looking For
|
||||
|
||||
**High-value additions:**
|
||||
- Popular AI coding assistants (IDE plugins, CLI tools)
|
||||
- AI chat products with unique system prompts
|
||||
- AI agents with tool/function definitions
|
||||
- Enterprise AI tools with complex prompt structures
|
||||
|
||||
**Quality standards:**
|
||||
- Must be the actual system prompt (not a guess or recreation)
|
||||
- Include the date it was captured
|
||||
- No personal API keys or credentials in the content
|
||||
- Organize files cleanly in a dedicated folder
|
||||
|
||||
## Directory Structure
|
||||
|
||||
```
|
||||
Tool Name/
|
||||
system-prompt.md # The main system prompt
|
||||
tools.json # Tool/function definitions (if available)
|
||||
previous-versions/ # Older versions (optional)
|
||||
2025-01-system-prompt.md
|
||||
```
|
||||
|
||||
## Code of Conduct
|
||||
|
||||
- Don't include credentials, API keys, or personal data
|
||||
- Credit sources when possible
|
||||
- Be respectful in issues and PRs
|
||||
- This is for educational and research purposes
|
||||
|
||||
## Questions?
|
||||
|
||||
Open an issue or join the [Discord](https://discord.gg/NwzrWErdMU).
|
||||
90
salesflow-saas/docs/SPECTRUM_COMPETITIVE_ANALYSIS.md
Normal file
90
salesflow-saas/docs/SPECTRUM_COMPETITIVE_ANALYSIS.md
Normal file
@ -0,0 +1,90 @@
|
||||
# Spectrum Digital AI vs Dealix — Competitive Analysis
|
||||
|
||||
**Date:** 2026-04-23
|
||||
**Competitor:** spectrumdigital.ai (Australia-based)
|
||||
|
||||
---
|
||||
|
||||
## Key Finding
|
||||
|
||||
Spectrum is a **GoHighLevel white-label reskin** — no proprietary AI, no defensible moat. Targets solopreneurs/micro-businesses. Zero MENA presence.
|
||||
|
||||
---
|
||||
|
||||
## Spectrum Products & Pricing
|
||||
|
||||
| Product | What it does | Monthly | Annual |
|
||||
|---------|-------------|---------|--------|
|
||||
| InfinityCall | AI receptionist, 24/7 calls, FAQ, booking | $197/mo + $0.26/min | $1,997/yr |
|
||||
| TrustLoop | Review management, AI review responses | $397/mo | $3,997/yr |
|
||||
| AutoEngage | Lead nurture: email/SMS/WhatsApp drips, webchat, FB ads | $797/mo | $7,997/yr |
|
||||
|
||||
30-day free trial on all products.
|
||||
|
||||
---
|
||||
|
||||
## Feature Comparison
|
||||
|
||||
| Feature | Spectrum | Dealix | Winner |
|
||||
|---------|----------|--------|--------|
|
||||
| AI lead scoring | No | Yes | Dealix |
|
||||
| WhatsApp outreach | Yes (via GHL) | Yes (native) | Tie |
|
||||
| CRM sync (HubSpot/Salesforce) | No | Yes | Dealix |
|
||||
| Calendly booking | Own calendar only | Yes | Dealix |
|
||||
| Approval workflows | No | Yes | Dealix |
|
||||
| Arabic-first UI | No | Yes | Dealix |
|
||||
| Saudi market focus | No | Yes | Dealix |
|
||||
| Multi-LLM routing | No (GHL) | Yes (Groq/OpenAI/Anthropic) | Dealix |
|
||||
| Durable workflows | No | Yes | Dealix |
|
||||
| Audit trail / evidence | No | Yes | Dealix |
|
||||
| PDPL compliance | No | Yes | Dealix |
|
||||
| AI voice receptionist | Yes ($0.26/min) | Not yet | Spectrum |
|
||||
| Review/reputation mgmt | Yes | Not yet | Spectrum |
|
||||
| Facebook ad management | Yes | Not yet | Spectrum |
|
||||
| Database reactivation | Yes | Partial | Spectrum |
|
||||
| AI webchat | Yes | Not yet | Spectrum |
|
||||
|
||||
**Score: Dealix 11 — Spectrum 5**
|
||||
|
||||
---
|
||||
|
||||
## Where Dealix is Ahead (Defend These)
|
||||
|
||||
1. **Enterprise-grade** — CRM sync, approvals, audit trails
|
||||
2. **PDPL compliance** — Saudi regulatory requirement
|
||||
3. **Arabic-first** — native RTL, Saudi dialect, Hijri dates, SAR
|
||||
4. **Proprietary AI** — multi-LLM routing vs GHL reskin
|
||||
5. **Revenue OS** — unified system vs disconnected tool bundle
|
||||
|
||||
## Where Dealix is Behind (Close These Gaps)
|
||||
|
||||
1. **AI voice receptionist** — Spectrum's InfinityCall (P1, post-launch)
|
||||
2. **Review management** — TrustLoop equivalent (P2)
|
||||
3. **Facebook ad management** — AutoEngage feature (Backlog)
|
||||
4. **AI webchat** — live chat widget (P1)
|
||||
5. **Database reactivation** — dormant lead re-engagement (P1)
|
||||
|
||||
---
|
||||
|
||||
## Top 5 Competitive Messages for Saudi Market
|
||||
|
||||
1. **"مبني للسوق السعودي"** — Arabic-first, PDPL compliant, Saudi team. Spectrum is Australian with zero MENA presence.
|
||||
|
||||
2. **"نظام تشغيل إيرادات، مو أدوات مفرّقة"** — Dealix is one unified system. Spectrum is 3 separate tools ($1,391/mo combined).
|
||||
|
||||
3. **"ذكاء اصطناعي حقيقي، مو تغليف"** — Dealix has multi-LLM routing + lead scoring. Spectrum is a GoHighLevel reskin.
|
||||
|
||||
4. **"جاهز للمؤسسات"** — HubSpot sync, approval chains, evidence audit. Spectrum targets solopreneurs.
|
||||
|
||||
5. **"بياناتك تبقى في يدك"** — PDPL compliance, data sovereignty. Spectrum has no data residency guarantees.
|
||||
|
||||
---
|
||||
|
||||
## Strategic Decision
|
||||
|
||||
**Do NOT copy Spectrum's playbook.** Their GHL-reskin model targets a different market (micro-businesses). Dealix should position UP-market:
|
||||
|
||||
- Target: Saudi mid-market companies (50-500 employees)
|
||||
- Differentiator: compliance + Arabic + enterprise integrations
|
||||
- Pricing: higher than Spectrum (value-based, not volume-based)
|
||||
- Message: "The revenue OS Saudi enterprises trust"
|
||||
74
salesflow-saas/docs/VIDEO_PRODUCTION_GUIDE.md
Normal file
74
salesflow-saas/docs/VIDEO_PRODUCTION_GUIDE.md
Normal file
@ -0,0 +1,74 @@
|
||||
# Dealix Promo Video Production Guide
|
||||
|
||||
## Tools (Ranked by Quality, April 2026)
|
||||
|
||||
### Video Generation
|
||||
1. **Google Veo 3.1** (RECOMMENDED) — 9:16 native, 4K, 60fps, built-in audio sync
|
||||
2. **Kling 3.0** — best character consistency across scenes
|
||||
3. **Runway Gen-4.5** — best creative control
|
||||
|
||||
> Sora is shutting down April 26, 2026. Do NOT use it.
|
||||
|
||||
### Saudi Arabic Voiceover
|
||||
1. **Nabarati** (nabarati.ai) — Arabic-first, 1000+ dialect tones, Saudi/Gulf dialect
|
||||
2. **Lahajati** (lahajati.ai) — 192+ Arabic dialects, 98-99% accuracy
|
||||
3. **ElevenLabs** — broader platform, good fallback
|
||||
|
||||
---
|
||||
|
||||
## Script (25 seconds, Saudi Dialect)
|
||||
|
||||
```
|
||||
[0:00-0:08 — Scene 1: The Pain]
|
||||
وش لو عندك نظام ذكي يسوق لك، يتابع العملاء، ويقفل الصفقة؟
|
||||
|
||||
[0:08-0:17 — Scene 2: The Solution]
|
||||
ديلكس — نظام الإيرادات الذكي. يكتشف لك العميل المناسب،
|
||||
يتواصل معه بالطريقة الصح، ويحوّل كل فرصة لصفقة.
|
||||
|
||||
[0:17-0:25 — Scene 3: The CTA]
|
||||
شركتك تستاهل نظام يشتغل بذكاء. جرّب ديلكس — مجاناً.
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Scene Prompts (Veo 3.1)
|
||||
|
||||
### Scene 1 — "The Pain" (0:00-0:08)
|
||||
```
|
||||
Cinematic 9:16 vertical video. Saudi businessman in white thobe and
|
||||
shemagh standing alone on rooftop overlooking Riyadh skyline at golden
|
||||
hour. Kingdom Tower visible in background. He looks at his phone with
|
||||
frustrated expression, puts it down. Camera slowly pushes in. Shallow
|
||||
depth of field, warm amber lighting, anamorphic lens flare.
|
||||
Photorealistic, 4K.
|
||||
```
|
||||
|
||||
### Scene 2 — "The Solution" (0:08-0:17)
|
||||
```
|
||||
Cinematic 9:16 vertical video. Same Saudi businessman now sitting in
|
||||
ultra-modern glass office in Riyadh, holographic data dashboard floating
|
||||
in front of him showing deal pipeline with Arabic text. He smiles
|
||||
confidently, swipes through deals. Teal and white UI elements glow.
|
||||
Clean minimal interior, marble and glass. Camera orbits 180 degrees.
|
||||
Cool blue-teal corporate lighting. Photorealistic, 4K.
|
||||
```
|
||||
|
||||
### Scene 3 — "The CTA" (0:17-0:25)
|
||||
```
|
||||
Cinematic 9:16 vertical video. Wide aerial drone shot of Riyadh
|
||||
financial district at night, lights glowing. Smooth transition to
|
||||
close-up of Dealix logo appearing on glass screen with teal glow effect.
|
||||
Text appears in elegant Arabic typography. Cinematic depth, bokeh city
|
||||
lights in background. Premium tech aesthetic. Photorealistic, 4K.
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Production Workflow
|
||||
|
||||
1. Generate 3 clips in **Veo 3.1** (Google AI Studio)
|
||||
2. Record voiceover in **Nabarati** (Saudi male, confident tone)
|
||||
3. Combine in **CapCut** or **Runway editor**
|
||||
4. Add Dealix logo + CTA overlay + background music
|
||||
5. Export 9:16 for Instagram Reels / TikTok / YouTube Shorts
|
||||
Loading…
Reference in New Issue
Block a user