Skip to main content
Glama
systempromptio

SystemPrompt Coding Agent

Official
index.ts835 B
/** * @fileoverview Central registry for all coding prompts * @module handlers/prompts */ import type { Prompt } from '@modelcontextprotocol/sdk/types.js'; import { BUG_FIXING_PROMPTS } from './bug-fixing.js'; import { UNIT_TESTING_PROMPTS } from './unit-testing.js'; import { REACT_COMPONENT_PROMPTS } from './react-components.js'; import { REDDIT_POST_PROMPTS } from './reddit-post.js'; /** * All available coding prompts organized by category * Limited to one prompt per category for simplicity */ export const CODING_PROMPTS: Prompt[] = [ ...BUG_FIXING_PROMPTS, ...UNIT_TESTING_PROMPTS, ...REACT_COMPONENT_PROMPTS, ...REDDIT_POST_PROMPTS, ]; /** * Export individual prompt categories for direct access */ export { BUG_FIXING_PROMPTS, UNIT_TESTING_PROMPTS, REACT_COMPONENT_PROMPTS, REDDIT_POST_PROMPTS, };

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/systempromptio/systemprompt-code-orchestrator'

If you have feedback or need assistance with the MCP directory API, please join our Discord server