Skip to content

Commit 78f7215

Browse files
CopilotRtur2003
andcommitted
Fix APEI naming inconsistency, token estimate, add project-types INDEX, fix CONTRIBUTING URL
Co-authored-by: Rtur2003 <111705644+Rtur2003@users.noreply.github.com>
1 parent df6c47e commit 78f7215

8 files changed

Lines changed: 51 additions & 8 deletions

File tree

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
## Quick Setup
1313

1414
```bash
15-
git clone https://github.com/YOUR_USERNAME/Claude-Code-Promts.git
15+
git clone https://github.com/Rtur2003/Claude-Code-Promts.git
1616
cd Claude-Code-Promts
1717
git checkout -b feature/your-feature-name
1818
```

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Production-ready system prompts for Claude AI and coding agents. Built on the **
1919
| **Documentation** | Technical writing | ~2.5K | [View](prompts/english/agents/documentation-prompt.md) |
2020
| **Performance** | Optimization & profiling | ~3K | [View](prompts/english/agents/performance-optimization-prompt.md) |
2121
| **Git & VCS** | Branching & commits | ~2.5K | [View](prompts/english/agents/git-version-control-prompt.md) |
22-
| **Integration Guardian** | System integrity | ~2.5K | [View](prompts/english/agents/integration-guardian-prompt.md) |
22+
| **Integration Guardian** | System integrity | ~3.5K | [View](prompts/english/agents/integration-guardian-prompt.md) |
2323

2424
### 🎯 Claude Code-Specific Prompts
2525

USAGE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Stack: Node.js, Express, PostgreSQL
8484

8585
**Execute:** Implement steps 1–5 with tests after each step.
8686

87-
**Evaluate:**
87+
**Iterate:**
8888
- ✓ Login works, tokens generated, routes protected
8989
- ⚠ No refresh tokens, short expiry
9090

prompts/english/INDEX.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Optimized for autonomous AI coding agents (Claude Code, GitHub Copilot, etc.).
1919
| 9 | **Documentation** | Technical writing | ~2.5K | [View](agents/documentation-prompt.md) |
2020
| 10 | **Performance** | Optimization & profiling | ~3K | [View](agents/performance-optimization-prompt.md) |
2121
| 11 | **Git & VCS** | Branching & commits | ~2.5K | [View](agents/git-version-control-prompt.md) |
22-
| 12 | **Integration Guardian** | System integrity | ~2.5K | [View](agents/integration-guardian-prompt.md) |
22+
| 12 | **Integration Guardian** | System integrity | ~3.5K | [View](agents/integration-guardian-prompt.md) |
2323
| 13 | **Claude Code Modes**| Mode transitions & planning | ~2.5K | [View](agents/claude-code-modes-prompt.md) |
2424
| 14 | **Claude Code Tokens** | Token optimization strategies | ~2.5K | [View](agents/claude-code-token-optimization-prompt.md) |
2525
| 15 | **Claude Code Workflow** | CLAUDE.md, hooks, permissions | ~3K | [View](agents/claude-code-workflow-prompt.md) |

prompts/english/agents/INDEX.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
| 9 | **Documentation** | CLEAR protocol, API docs | ~2.5K | [View](documentation-prompt.md) |
1818
| 10 | **Performance** | MEASURE protocol, profiling | ~3K | [View](performance-optimization-prompt.md) |
1919
| 11 | **Git & VCS** | BRANCH protocol, commits | ~2.5K | [View](git-version-control-prompt.md) |
20-
| 12 | **Integration Guardian** | i18n, tokens, contracts, a11y | ~2.5K | [View](integration-guardian-prompt.md) |
20+
| 12 | **Integration Guardian** | i18n, tokens, contracts, a11y | ~3.5K | [View](integration-guardian-prompt.md) |
2121
| 13 | **Claude Code Modes**| Mode transitions, /think, /ultrathink | ~2.5K | [View](claude-code-modes-prompt.md) |
2222
| 14 | **Claude Code Tokens** | Token optimization, SAVE protocol | ~2.5K | [View](claude-code-token-optimization-prompt.md) |
2323
| 15 | **Claude Code Workflow** | CLAUDE.md, hooks, permissions, MCP | ~3K | [View](claude-code-workflow-prompt.md) |

prompts/english/base/claude-foundation-prompt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ The development process is never truly "done" - it's an ongoing cycle:
142142
└───────────────┬─────────────────────────────────┘
143143
144144
┌─────────────────────────────────────────────────┐
145-
EVALUATE
145+
ITERATE
146146
│ • Measure results │
147147
│ • Identify improvements │
148148
│ • Determine next iteration │
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Project-Type Prompts Index
2+
3+
> Use with the [Foundation Prompt](../base/claude-foundation-prompt.md) for interactive Claude sessions.
4+
5+
## Catalog
6+
7+
| # | Prompt | Technologies | File |
8+
|---|--------|-------------|------|
9+
| 1 | **Web Development** | React, Vue, Angular, CSS, A11y | [View](web-development-prompt.md) |
10+
| 2 | **API Development** | REST, GraphQL, Node, Go, Java | [View](api-development-prompt.md) |
11+
| 3 | **Data Science & ML** | Python, pandas, scikit-learn, PyTorch | [View](data-science-ml-prompt.md) |
12+
| 4 | **Mobile** | iOS, Android, React Native, Flutter | [View](mobile-development-prompt.md) |
13+
| 5 | **DevOps & CI/CD** | Kubernetes, Docker, Terraform | [View](devops-cicd-prompt.md) |
14+
| 6 | **Database & SQL** | PostgreSQL, MySQL, Redis, indexing | [View](database-sql-prompt.md) |
15+
| 7 | **General Software** | Python, JS, Go, Java, C# | [View](general-software-development-prompt.md) |
16+
17+
---
18+
19+
## Usage
20+
21+
### Option 1: Foundation + Project Type
22+
Combine the Foundation prompt with a project-type prompt for domain-specific guidance.
23+
24+
### Option 2: Multi-Domain
25+
Combine Foundation + multiple project-type prompts for full-stack work:
26+
```
27+
Foundation + Web Development + API Development
28+
```
29+
30+
---
31+
32+
## Recommended Combinations
33+
34+
| Project | Prompts |
35+
|---------|---------|
36+
| React / Vue app | Foundation + Web Development |
37+
| REST / GraphQL API | Foundation + API Development |
38+
| ML / Data Science | Foundation + Data Science & ML |
39+
| iOS / Android app | Foundation + Mobile |
40+
| DevOps / Infra | Foundation + DevOps & CI/CD |
41+
| Database design | Foundation + Database & SQL |
42+
| General software | Foundation + General Software |
43+
| Full-stack app | Foundation + Web + API |

prompts/english/workflows/iterative-development-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This guide demonstrates how to apply the **Analyze → Plan → Execute → Iter
2525
└──────┬───────┘
2626
2727
┌──────────────┐
28-
EVALUATE
28+
ITERATE
2929
│ Measure & │
3030
│ Review │
3131
└──────┬───────┘
@@ -368,7 +368,7 @@ git checkout -- file.js # Revert single file
368368
git reset --hard # Revert all changes (last resort)
369369
```
370370

371-
## Phase 4: Evaluate
371+
## Phase 4: Iterate
372372

373373
### Objectives
374374
- Measure results against success criteria

0 commit comments

Comments
 (0)