https://github.com/yicheny0580/prompt-automation
Prompt Automation: a cross-platform Electron app for loading repos, selecting context files, and generating prompts—essential features only for now, on Windows and macOS.
https://github.com/yicheny0580/prompt-automation
electron electronapp llm prompt prompt-engineering
Last synced: 13 days ago
JSON representation
Prompt Automation: a cross-platform Electron app for loading repos, selecting context files, and generating prompts—essential features only for now, on Windows and macOS.
- Host: GitHub
- URL: https://github.com/yicheny0580/prompt-automation
- Owner: yicheny0580
- Created: 2025-04-06T19:04:23.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-04-28T04:55:24.000Z (about 1 year ago)
- Last Synced: 2026-05-09T18:44:00.950Z (about 1 month ago)
- Topics: electron, electronapp, llm, prompt, prompt-engineering
- Language: TypeScript
- Homepage:
- Size: 461 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#
Prompt Automation 
An Electron application to facilitate prompt creation work when working with Code Repos
## Motivation
I’ve been using [Repo Prompt](https://repoprompt.com/) extensively and really appreciate its features, but it doesn’t support Windows. I also find that I only need a small subset of its functionality—loading a repository directory, selecting context files, and generating prompts—while the LLM API integrations for chat and automated file modifications aren’t part of my workflow. To address this, I decided to build a streamlined application that works seamlessly on both macOS and Windows and focuses on these core tasks. Of course, this is just the starting point, and I may add additional features beyond the initial scope down the road.
## Recommended IDE Setup
- [VSCode](https://code.visualstudio.com/) + [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) + [Prettier](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode)
## Project Setup
### Install
```bash
$ npm install
```
### Development
```bash
$ npm run dev
```
### Build
```bash
# For windows
$ npm run build:win
# For macOS
$ npm run build:mac
# For Linux
$ npm run build:linux
```