🛡️ ShepVerify - Real-Time Code Verification
Ship verified code across 11 languages. Lighthouse-style scores for your entire codebase.
🆕 What's New in v1.4.0
Multi-Language Verification
ShepVerify now verifies 11 languages, not just ShepLang:
| Language |
What We Check |
| 🔷 TypeScript |
Type safety, null checks, any usage |
| 🟡 JavaScript |
Type coercion, null access |
| ⚛️ React TSX/JSX |
Hook rules, prop types, patterns |
| 🐍 Python |
Type hints, None safety, PEP8 |
| 🌐 HTML |
Accessibility, SEO, semantics |
| 🎨 CSS/SCSS/LESS |
Best practices, performance |
| 📦 JSON |
Syntax, schema validation |
| 🐑 ShepLang |
Full 4-phase verification |
✨ Features
🛡️ ShepVerify Dashboard
Real-time verification panel showing:
- Lighthouse-style scores (0-100%)
- Phase breakdown for each language
- Click any error to jump to exact line
- Verification history
📊 Language-Specific Metrics
Each language gets relevant checks:
| TypeScript |
Python |
HTML |
| Type Safety |
Type Hints |
Accessibility |
| Null Safety |
None Safety |
SEO |
| Code Quality |
PEP8 |
Semantics |
| React Patterns |
Best Practices |
- |
🎯 Click-to-Navigate
Double-click any error to:
- Jump to the exact line
- See the error highlighted
- Fix it immediately
🐑 Bonus: ShepLang
Also includes full support for ShepLang - the AI-native programming language:
app TaskManager
data Task:
fields:
title: text
done: yes/no
view Dashboard:
list Task
button "Add" -> CreateTask
action CreateTask(title):
call POST "/tasks" with title
show Dashboard
🚀 Quick Start
- Install this extension
- Open any TypeScript, Python, React, HTML, CSS, or ShepLang file
- See real-time verification in the ShepVerify panel
📋 Commands
| Command |
Description |
ShepLang: Run ShepVerify |
Manual verification |
ShepLang: Quick Create Project |
AI-powered app generation |
ShepLang: Import from GitHub |
Convert existing code |
Tested & Verified on Real Projects:
Backend Support:
| Backend Type | Support | Confidence |
|-------------|---------|------------|
| Prisma ORM | ✅ Full extraction | 90% |
| React State | ✅ Heuristics | 50% |
| Combined | ✅ Hybrid | 70% |
What Gets Generated:
| Folder | Files | Description |
|--------|-------|-------------|
| models/ | ✅ | Data entities from Prisma |
| views/ | ✅ | UI components with screen kinds |
| actions/ | ✅ | Event handlers |
| workflows/ | ✅ | Multi-step automations |
| jobs/ | ✅ | Background tasks (cron) |
| integrations/ | ✅ | Stripe, SendGrid, Auth0 |
| realtime/ | ✅ | WebSocket hooks |
📊 View Full Test Results - 173/173 tests passing
🚀 Getting Started
Installation
- Install the extension from the Marketplace
- Open a
.shep file or create a new one
- Start coding!
Quick Start
Create your first ShepLang app:
- Press
Ctrl+Shift+P (Windows/Linux) or Cmd+Shift+P (Mac)
- Type "ShepLang: New Project"
- Choose a template (Todo App, Counter, Contact List)
- Start editing!
Try the snippets:
- Type
app + Tab → Create new app structure
- Type
data + Tab → Define a data model
- Type
view + Tab → Create a UI view
- Type
action + Tab → Define an action
- Type
button + Tab → Add a button
- Type
list + Tab → Add a list component
📚 Examples
Counter App
app Counter {
data State:
fields:
count: number
view Home:
show "Count: {State.count}"
button "Increment" -> Increment
button "Decrement" -> Decrement
action Increment():
set State.count = State.count + 1
action Decrement():
set State.count = State.count - 1
}
app Contacts {
data Contact:
fields:
name: text
email: text
phone: text
view Home:
show "My Contacts"
list Contact
button "Add Contact" -> CreateContact
action CreateContact(name, email, phone):
add Contact with name, email, phone
show Home
}
Dog Reminders
app DogReminders {
data Dog:
fields:
name: text
breed: text
next_vet_visit: datetime
view Dashboard:
show "My Dogs"
list Dog
button "Add Dog" -> CreateDog
action CreateDog(name, breed, next_vet_visit):
add Dog with name, breed, next_vet_visit
show Dashboard
}
More examples: GitHub Repository
🎯 Who Is This For?
✅ Non-Technical Founders
You have great ideas but coding feels like learning a foreign language. ShepLang speaks YOUR language.
✅ Technical Founders
Prototype faster. Validate ideas in hours, not days. Generate boilerplate instantly.
✅ Designers
Turn your designs into working code. Bridge the gap between mockup and MVP.
✅ Students & Learners
Learn programming concepts without syntax frustration. Focus on logic, not semicolons.
💡 Why ShepLang?
Before ShepLang:
// Traditional TypeScript
interface Todo {
id: string;
title: string;
done: boolean;
created: Date;
}
const todos: Todo[] = [];
function createTodo(title: string): void {
const newTodo: Todo = {
id: generateId(),
title: title,
done: false,
created: new Date()
};
todos.push(newTodo);
renderDashboard();
}
function renderDashboard(): void {
// Render logic...
}
After ShepLang:
app MyTodos {
data Todo:
fields:
title: text
done: yes/no
created: datetime
action CreateTodo(title):
add Todo with title, done=false, created=now
show Dashboard
}
Same functionality. 70% less code. 100% more readable.
🛠️ Commands
Access via Command Palette (Ctrl+Shift+P / Cmd+Shift+P):
Import Commands 🆕
- ShepLang: Import from GitHub - Convert any GitHub repo to ShepLang
- ShepLang: Import from Local Project - Convert local codebase to ShepLang
Project Commands
- ShepLang: New Project - Create a new ShepLang project from template
- ShepLang: Project Wizard - Guided project setup with AI scaffolding
Development Commands
- ShepLang: Preview - Open live preview of your app
- ShepLang: Compile File - Compile current file to TypeScript
- ShepLang: Show Output - View compiler output
- ShepLang: Restart Backend - Restart the language server
📖 Language Reference
Data Types
text → string
number → number
yes/no → boolean
datetime → Date
id → string (unique identifier)
Keywords
app - Define an application
data - Define a data model
view - Define a UI view
action - Define an action/function
button - Create a button
list - Create a list view
show - Display content
add - Create new record
set - Update a value
call - Invoke an action
when - Conditional logic
for - Loop over items
Full Syntax Guide
Visit our documentation for complete syntax reference.
🔧 Configuration
Extension Settings
This extension contributes the following settings:
sheplang.autoCompile: Automatically compile on save (default: false)
sheplang.showOutput: Show compiler output automatically (default: true)
sheplang.enableDiagnostics: Enable real-time diagnostics (default: true)
File Associations
The extension automatically activates for:
.shep files (ShepLang frontend)
.shepthon files (ShepLang backend - coming soon)
📦 What's Included
This extension provides:
✅ Full Language Support
- Syntax highlighting (TextMate grammars)
- Code snippets for rapid development
- Language Server Protocol (LSP) integration
- Real-time error checking
- Autocomplete suggestions
✅ Developer Tools
- Compile to TypeScript
- Preview your app
- Debug diagnostics
- Output channel for logs
✅ Project Templates
- Todo App
- Counter
- Contact List
- More coming soon!
🚀 What's Included
✅ Production Features (v1.0)
- Full syntax highlighting for
.shep files
- Intelligent code snippets (10+ templates)
- Real-time error detection and diagnostics
- One-click compilation to TypeScript
- Live preview of your applications
- Language Server Protocol integration
✅ Full-Stack Generation
- Frontend React components with API calls
- Backend Express endpoints with validation
- Database Prisma models with migrations
- Authentication & authorization
- Real-time WebSocket features
- Third-party integrations (Stripe, SendGrid, Twilio)
🔜 Coming Soon (v1.1)
- Advanced autocomplete and IntelliSense
- Inline documentation and hover help
- Go-to-definition and symbol navigation
- Refactoring tools
- More advanced snippets
🔮 Future (v2.0)
- Web-based playground integration
- Figma-to-ShepLang converter
- One-click deployment to Vercel/Netlify
- Collaboration features
- Plugin system
📝 Requirements
- VS Code: Version 1.85.0 or higher
- Node.js: Version 16+ (for compilation)
- TypeScript: Version 5.0+ (automatically installed)
🐛 Known Issues
- ShepThon backend language support is experimental
- Large files (>1000 lines) may have slower diagnostics
- Some edge cases in error recovery
Report bugs: GitHub Issues
Get Help
Contribute
ShepLang is open source! Contributions welcome:
📜 License
MIT License - see LICENSE for details.
🙏 Acknowledgments
Built with:
Inspired by: Every founder who's been told "just learn to code first."
🌟 Show Your Support
If ShepLang helps you build faster:
- ⭐ Star the repo: GitHub
- 💬 Share on Twitter: @GoldenSheepAI
- 📝 Write a review: Help others discover ShepLang
- 🎨 Build something: Share what you create!
📚 Learn More
🎓 Tutorial: Your First App
1. Create New Project
- Open Command Palette (
Ctrl+Shift+P)
- Select "ShepLang: New Project"
- Choose "Todo App" template
2. Explore the Code
app MyTodos {
data Todo:
fields:
title: text
done: yes/no
view Dashboard:
list Todo
button "Add Task" -> CreateTodo
}
3. Modify It
- Change "Todo" to "Task"
- Add a new field:
priority: text
- Watch syntax highlighting update in real-time
4. Compile
- Press
F5 or use Command Palette
- Select "ShepLang: Compile File"
- See generated TypeScript in output panel
5. Next Steps
- Try other templates (Counter, Contact List)
- Read the full tutorial
- Join the community!
❓ FAQ
Q: Do I need to know TypeScript?
A: No! ShepLang generates TypeScript for you. You can learn TypeScript later if you want.
Q: Is this production-ready?
A: Yes! ShepLang v1.0 generates clean, type-safe TypeScript suitable for production use.
Q: Can I modify the generated code?
A: Absolutely! The TypeScript output is yours to customize.
Q: Does this work offline?
A: Yes! All language features work offline. Only AI assistant features require internet.
Q: Is ShepLang free?
A: Yes! The language and extension are open source and free forever.
Q: What about backend code?
A: ShepThon (backend language) is coming in Q1 2026!
Q: Can I use this commercially?
A: Yes! MIT license allows commercial use.
🔥 Quick Tips
💡 Tip 1: Use Ctrl+Space for autocomplete suggestions
💡 Tip 2: Hover over keywords for inline documentation
💡 Tip 3: Press F12 to go to definition
💡 Tip 4: Use snippets - type app then Tab
💡 Tip 5: Enable auto-compile in settings for faster iteration
🎯 Success Stories
"Built my MVP in 2 days with ShepLang. Would've taken me 2 months with traditional code."
— Founder, SaaS startup
"Finally, a language that thinks like I do!"
— Designer turned founder
"Used this to prototype before hiring devs. Saved months of back-and-forth."
— Non-technical CEO
Share your story!
📊 Version History
1.0.0 (November 22, 2025) - Production Release
- 🎉 Initial production release
- ✨ Full syntax highlighting for
.shep files
- 📝 Code snippets (10+ templates)
- 🔍 Real-time diagnostics with ShepVerify
- 🛠️ Complete LSP integration
- 📦 Full-stack compilation to TypeScript
- 🚀 Live preview of applications
- 🎨 Beautiful sheep icon 🐑
- 🏗️ Complete AIVP Stack support
- 🔐 Authentication & authorization features
- 📡 Real-time WebSocket support
- 💳 Third-party integrations (Stripe, SendGrid, Twilio)
See CHANGELOG for full history.
🐑 About Golden Sheep AI
We're building the future where everyone can code.
Not by "dumbing down" programming. By creating languages that match how domain experts think.
ShepLang is our first product. More coming soon.
Follow the journey:
💌 Feedback
We'd love to hear from you!
Made with ❤️ by a non-technical founder who refused to give up
8 years learning → 4 weeks building → ∞ possibilities
🐑 Welcome to ShepLang 🐑
Get Started • Examples • Community
Enjoy! 🚀