promptr

Promptr is a CLI tool that applies plain language instructions to the filesystem. Instructions can utilize a liquidjs based templating system. Use cases include refactoring, code generation, and experimentation. (by ferrislucas)

Promptr Alternatives

Similar projects and alternatives to promptr

  1. Filestash

    119 promptr VS Filestash

    :file_folder: A file manager / web client for SFTP, S3, FTP, WebDAV, Git, Minio, LDAP, CalDAV, CardDAV, Mysql, Backblaze, ...

  2. SurveyJS

    JavaScript Form Builder with No-Code UI & Built-In JSON Schema Editor. Keep full control over the data you collect and tailor the form builder’s entire look and feel to your users’ needs. SurveyJS works with React, Angular, Vue 3, and is compatible with any backend or auth system. Learn more.

    SurveyJS logo
  3. bitbar

    Put the output from any script or program into your macOS Menu Bar (the BitBar reboot)

  4. phind-for-firefox

    Discontinued Sets phind.com as the default search engine in Firefox

  5. Internet-Places-Database

    Database of Internet places. Mostly domains

  6. open-interpreter

    A natural language interface for computers

  7. chatgpt-shell

    32 promptr VS chatgpt-shell

    A multi-llm Emacs shell (ChatGPT, Claude, DeepSeek, Gemini, Kagi, Ollama, Perplexity) + editing integrations

  8. yari

    18 promptr VS yari

    The platform code behind MDN Web Docs

  9. Stream

    Stream - Scalable APIs for Chat, Feeds, Moderation, & Video. Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.

    Stream logo
  10. pull-pal

    A digital assistant that writes code and collaborates with humans on git repositories

  11. Clendar

    10 promptr VS Clendar

    Clendar - Minimal Calendar app. Written in SwiftUI.

  12. Conkey

    9 promptr VS Conkey

    A keyboard layout for conlangers

  13. gish

    4 promptr VS gish

    GPT command line (by drorm)

  14. vault-ai

    80 promptr VS vault-ai

    OP Vault ChatGPT: Give ChatGPT long-term memory using the OP Stack (OpenAI + Pinecone Vector Database). Upload your own custom knowledge base files (PDF, txt, epub, etc) using a simple React frontend.

  15. srgn

    7 promptr VS srgn

    A grep-like tool which understands source code syntax and allows for manipulation in addition to search

  16. photo_id_resizer

    Resize photo ID images using face recognition technology

  17. plz-cli

    5 promptr VS plz-cli

    Copilot for your terminal

  18. soundfingerprinting

    Open source audio fingerprinting in .NET. An efficient algorithm for acoustic fingerprinting written purely in C#.

  19. ChatVRM

    1 promptr VS ChatVRM
  20. kindle_clippings_webapp

    Web Application for importing, viewing and tagging kindle clippings. Account is not required.

  21. full-text-tabs-forever

    Full text search all your browsing history

  22. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better promptr alternative or higher similarity.

promptr discussion

Log in or Post with

promptr reviews and mentions

Posts with mentions or reviews of promptr. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-14.
  • Ask HN: What are some actual use cases of AI Agents?
    6 projects | news.ycombinator.com | 14 Feb 2024
    I taught https://github.com/KillianLucas/open-interpreter how to use https://github.com/ferrislucas/promptr

    Then I asked it to add a test suite to a rails side project. It created missing factories, corrected a broken test database configuration, and wrote tests for the classes and controllers that I asked it to.

    I didn't have to get involved with mundane details. I did have to intervene here and there, but not much. The tests aren't the best in the world, but IMO they're adding value by at least covering the happy path. They're not as good as an experienced person would write.

    I did spend a non-trivial amount of time fiddling with the prompts I used to teach OI about Promptr as well as the prompts I used to get it to successfully create the test suite.

    The total cost was around $11 using GPT4 turbo.

    I think in this case it was a fun experiment. I think in the future, this type of tooling will be ubiquitous.

  • Ask HN: What apps have you created for your own use?
    212 projects | news.ycombinator.com | 12 Dec 2023
    I made a CLI tool called Promptr that allows you to make changes to a codebase via plain English instructions:

    https://github.com/ferrislucas/promptr

    There’s a templating system (liquidjs) included which is useful if you have a library of prompts that you want to reference often.

    You can think of it as a junior engineer that needs explicit instructions.

    Here are a few example PR’s implemented by Promptr - see the commits for the prompt that was used to produce the code:

    https://github.com/ferrislucas/promptr/pull/38

    https://github.com/ferrislucas/promptr/pull/41

  • Another Major Outage Across ChatGPT and API
    4 projects | news.ycombinator.com | 8 Nov 2023
    https://github.com/ferrislucas/promptr

    You just prompt it directly or with a file, and it applies the changes to your file system. There's also a templating system that allows you to reference other files from your prompt file if you want to have a shared prompt file that contains project conventions etc.

  • ReactAgent: LLM Agent for React Coding
    2 projects | news.ycombinator.com | 25 Oct 2023
    This is exactly the use that Promptr is intended for https://github.com/ferrislucas/promptr

    * full disclosure: I’m the author of Promptr

  • Ask HN: How do you use AI to get things done faster?
    2 projects | news.ycombinator.com | 28 Sep 2023
    I’ve been experimenting with pairing a tool I wrote called Promptr [1] with another tool called Open Interpreter [2].

    I start with a prompt that teaches Open Interpreter how to use Promptr, and then I discuss what I’m trying to accomplish. It’s certainly not perfect, but there’s definitely something good that happens when you can iterate using dialog with a robot that can modify your file system and execute commands locally.

    [1] Promptr: https://github.com/ferrislucas/promptr

    [2] Open Interpreter: https://github.com/KillianLucas/open-interpreter

  • Coders Can Survive–and Thrive–In a ChatGPT World
    2 projects | news.ycombinator.com | 4 Jul 2023
    I wrote a great tool for this: https://github.com/ferrislucas/promptr

    It’s great for making changes to existing code because it automatically includes the relevant files for context.

  • ChatGPT Changed How I Write Software
    4 projects | news.ycombinator.com | 11 Jun 2023
    For those looking for specific examples of useful code being authored by AI, you can check out this tool:

    https://github.com/ferrislucas/promptr

    The README links to example PR’s comprised of commits written by GPT4. The prompts used to produce the code are noted in the commit messages.

  • Ask HN: What's your favorite GPT powered tool?
    16 projects | news.ycombinator.com | 15 May 2023
    Promptr is a coding assistant tool that allows you to ask GPT to produce or modify code, and the results will be automatically applied to your file system.

    https://github.com/ferrislucas/promptr

    From the README:

  • Any recommended tools for accessing codebases?
    2 projects | /r/ChatGPT | 22 Apr 2023
    I'm also interested in this problem. It can be theoretically solved by giving GPT long-term memory about a specific codebase through vector embedding generation (using OpenAI's embeddings API). The semantic embeddings can then be stored in a vector (or vector-supported) database such as Pinecone alongside metadata for querying. Some of the key considerations are how to compare vectors for similarity (there are many algorithms) and how to use metadata to better support your use case. The following resources can be helpful to further understand this technique: - https://platform.openai.com/docs/guides/embeddings - https://www.mlq.ai/fine-tuning-gpt-3-question-answer-bot/ - https://www.pinecone.io/learn/javascript-chatbot/ A couple of semi-related projects I've been looking into: - https://github.com/ferrislucas/promptr - https://github.com/pashpashpash/vault-ai
  • 5-Apr-2023
    3 projects | /r/dailyainews | 11 Apr 2023
    Promptr is a CLI tool for operating on your codebase using GPT. (https://github.com/ferrislucas/promptr)
  • A note from our sponsor - SurveyJS
    surveyjs.io | 14 Jul 2025
    Keep full control over the data you collect and tailor the form builder’s entire look and feel to your users’ needs. SurveyJS works with React, Angular, Vue 3, and is compatible with any backend or auth system. Learn more. Learn more →

Stats

Basic promptr repo stats
16
928
5.5
7 months ago

ferrislucas/promptr is an open source project licensed under MIT License which is an OSI approved license.

The primary programming language of promptr is JavaScript.


Sponsored
JavaScript Form Builder with No-Code UI & Built-In JSON Schema Editor
Keep full control over the data you collect and tailor the form builder’s entire look and feel to your users’ needs. SurveyJS works with React, Angular, Vue 3, and is compatible with any backend or auth system. Learn more.
surveyjs.io

Did you know that JavaScript is
the 3rd most popular programming language
based on number of references?