| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
The ultimate library for AI-assisted development with Kiro, Designed to help developers discover, create, and perfect their prompts, steering documents, custom agents, agent hooks, and Kiro powers for every step of the software development lifecycle.
Promptz.dev is a comprehensive, community-driven platform for AI-assisted development, serving as the central hub for developers using Kiro, Kiro CLI, and Amazon Q Developer. Built with Next.js 16 and modern web technologies, it provides a fast, accessible, and developer-focused experience.
The platform enables creation, discovery, and sharing of AI development resources across the entire software development lifecycle, helping development teams establish consistent AI workflows and coding standards.
git clone --recursive https://github.com/your-org/promptz.dev.git
cd promptz.devnpm installgit submodule update --init --recursivenpm run devpromptz.dev/ ├── app/ # Next.js App Router pages and layouts │ ├── agents/ # Custom agents listing and detail pages │ ├── hooks/ # Agent hooks listing and detail pages │ ├── library/ # Unified library browsing page │ ├── powers/ # Kiro powers listing and detail pages │ ├── prompts/ # Prompts listing and detail pages │ ├── steering/ # Steering documents listing and detail pages │ ├── layout.tsx # Root layout with fonts and metadata │ ├── page.tsx # Homepage with latest content sections │ └── globals.css # Global styles with Tailwind imports ├── components/ # React components │ ├── ui/ # Shadcn UI components │ ├── search/ # Search modal components │ └── *.tsx # Content and layout components ├── data/ # Generated static JSON files (build output) ├── lib/ # Services and utilities ├── libraries/ # Git submodules for content libraries │ ├── kiro-powers/ # Official Kiro powers library │ └── promptz/ # Community prompts and resources ├── scripts/ # Build-time scripts └── __tests__/ # Test suites
Promptz.dev supports five primary content types, each designed for specific aspects of AI-assisted development:
AI instructions for specific development tasks organized by category:
Configuration files that ensure AI assistants consistently follow established patterns:
Specialized AI assistants for specific workflows:
Automation tools that execute predefined agent actions on IDE events:
Packaged tools, workflows, and best practices that Kiro can activate on-demand:
# Development
npm run dev # Start development server with hot reload
# Building
npm run build # Generate static data and build production bundle
npm run start # Start production server
# Testing
npm run test # Run all tests
npm run test:watch # Run tests in watch mode
npm run test:coverage # Run tests with coverage report
# Code Quality
npm run lint # Run ESLint
npm run prepare # Set up git hooks (runs automatically after install)The build process includes several automated steps:
Content Processing (scripts/generate-library-data.ts)
Search Index Generation (scripts/build-search-index.ts)
Next.js Build - Static site generation with optimized assets
The platform uses a build-time content processing system:
# Unit tests for components and utilities
npm run test
# Coverage reports
npm run test:coverage
# Watch mode for development
npm run test:watchThere are two main ways to contribute to Promptz.dev:
Share your AI development resources with the community by contributing to our integrated content libraries.
The easiest way to contribute! Simply share your raw Kiro files from your .kiro folders.
What you can contribute:
Your Kiro folder structure:
~/.kiro/ # Global configurations (user-wide) ├── steering/ # Personal coding standards (.md files) ├── hooks/ # Cross-project automation (.hook JSON files) └── settings/ # Configuration files (mcp.json, etc.) <project>/.kiro/ # Project-specific configurations ├── steering/ # Project standards (.md files) ├── hooks/ # Project automation (.hook JSON files) └── agents/ # Custom agent configurations
Power bundle structure:
power-name/
├── POWER.md # Main power file with frontmatter and instructions
├── mcp.json # Optional MCP server configuration
└── steering/ # Optional additional steering files
├── getting-started.md
└── best-practices.md
Quick contribution process:
For detailed guidelines and examples, see the promptz.lib CONTRIBUTING.md.
For official Kiro Powers with structured review and packaging, visit the Kiro Powers submission page for complete guidelines and requirements.
Help improve the Promptz.dev platform itself.
Types of website contributions:
Development workflow:
For complete development setup and guidelines, see our CONTRIBUTING.md.
This project is licensed under the MIT License. See the LICENSE file for details.
To learn more about the technologies used in this project:
| Back | FazBrowse Home | New Git URL |