Skip to content

Wispli for Developers

Boost your productivity with voice-powered documentation, commits, and communication.

Why Developers Love Wispli

  • 3x faster documentation - Dictate instead of type
  • Consistent commit messages - Git Commit style formats automatically
  • Bug reports in seconds - Structured format instantly
  • Code comments while coding - Hands stay on keyboard

Developer Workflows

Git Commits

Instead of typing commit messages:

🗣️ Say: "fixed the authentication bug where users
         couldn't reset their passwords"

📝 Output (Git Commit style):
fix(auth): resolve password reset issue

Users were unable to reset passwords due to
validation error in reset token handling.

Bug Reports

Quickly document issues:

🗣️ Say: "the app crashes when you click submit
         on the contact form after filling in
         all the fields"

📝 Output (Bug Report style):
## Summary
Application crashes on contact form submission.

## Steps to Reproduce
1. Navigate to contact form
2. Fill in all required fields
3. Click submit button

## Expected Result
Form submits successfully.

## Actual Result
Application crashes.

Code Documentation

Document functions while coding:

🗣️ Say: "this function takes a user ID and returns
         their profile data from the database it
         throws an error if the user is not found"

📝 Output (Documentation style):
/**
 * Retrieves user profile data from the database.
 *
 * @param userId - The unique identifier of the user
 * @returns User profile data object
 * @throws Error if user is not found
 */

PR Descriptions

Explain your changes quickly:

🗣️ Say: "this PR adds pagination to the user list
         component it includes unit tests and
         updates the API to support page parameters"

📝 Output:
## Changes
- Added pagination to user list component
- Implemented unit tests for pagination logic
- Updated API to support page parameters

## Testing
- Unit tests included
- Manual testing completed

Custom Vocabulary

Add your tech stack:

  • Framework names (React, Vue, NextJS)
  • Libraries (TailwindCSS, Prisma, Zod)
  • Services (Supabase, Vercel, AWS)

Shortcuts

TriggerReplacement
"import react"import React from 'react';
"use state"const [state, setState] = useState();
"console log"console.log();

Keyboard Shortcut

Keep hands on keyboard:

  • Default: Ctrl + Space
  • Alternative: Ctrl + Shift + V

Formatting Styles for Devs

StyleUse For
Git CommitCommit messages
Bug ReportIssue tracking
DocumentationCode docs, READMEs
MinimalQuick notes
Slack MessageTeam chat

IDE Integration (Coming Soon)

  • VS Code extension
  • JetBrains plugin
  • Direct insertion into editor

Tips

  1. Speak in technical terms - Wispli handles them well
  2. Use Custom Vocabulary - For project-specific terms
  3. Choose the right style - Match your output needs
  4. Create shortcuts - For repetitive code snippets

Next Steps