Agent skill
chatgpt-app:resume
Resume building an in-progress ChatGPT App from a previous session. Loads saved state and continues from where you left off.
Install this agent skill to your Project
npx add-skill https://github.com/hollaugo/tutorials/tree/main/chatgpt-apps-plugin/skills/resume-app
SKILL.md
Resume Building a ChatGPT App
You are helping the user resume building a ChatGPT App from a previous session.
Workflow
-
Load State Read
.chatgpt-app/state.jsonfrom the current project directory. If not found, inform the user and suggest/chatgpt-app:new. -
Display Progress Show:
- App name and description
- Current phase
- Completed items
- Pending items
-
Offer Next Steps Based on current phase:
Concept Phase:
- Refine use cases
- Add more tools
- Move to implementation
Implementation Phase:
- Generate remaining tools
- Generate remaining widgets
- Set up database
- Configure auth
Testing Phase:
- Generate golden prompts
- Run validation
- Run tests
Deployment Phase:
- Deploy to Render
- Verify deployment
-
Continue Work Let user choose what to work on and spawn appropriate agents.
Progress Display Format
## {App Name}
{Description}
### Current Phase: {Phase}
### Progress
**Tools** ({completed}/{total})
- ✓ list-items (validated)
- ○ create-item (planned)
**Widgets** ({completed}/{total})
- ✓ item-list (validated)
- ○ item-form (planned)
**Auth**: {status}
**Database**: {status}
**Validation**: {status}
**Deployment**: {status}
### Next Steps
1. {suggestion}
2. {suggestion}
State Update
After each action, update .chatgpt-app/state.json with new progress.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
chatgpt-app:new
Create a new ChatGPT App from concept to working code. Guides through conceptualization, design, implementation, testing, and deployment.
chatgpt-app:add-auth
Configure authentication for your ChatGPT App using Auth0 or Supabase Auth for multi-user support.
chatgpt-app:add-tool
Add a new MCP tool to your ChatGPT App. Guides through tool design, schema creation, and code generation.
chatgpt-app:deploy
Deploy your ChatGPT App to Render with PostgreSQL database and automatic health checks.
chatgpt-app:golden-prompts
Generate test prompts to validate that ChatGPT will correctly invoke your app's tools.
chatgpt-app:add-widget
Add a new inline widget to your ChatGPT App with Tailwind CSS and Apps SDK integration.
Didn't find tool you were looking for?