@ckelsoe/prompt-architect 3.2.0 → 3.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"name": "prompt-architect",
|
|
13
13
|
"source": "./",
|
|
14
14
|
"description": "Analyzes and improves prompts using 27 research-backed frameworks. Intent-based selection routes to the right framework — from ultra-minimal (APE) to agentic (ReAct).",
|
|
15
|
-
"version": "3.2.
|
|
15
|
+
"version": "3.2.1",
|
|
16
16
|
"keywords": ["prompt-engineering", "prompt-frameworks", "agent-skills"],
|
|
17
17
|
"category": "productivity"
|
|
18
18
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "prompt-architect",
|
|
3
3
|
"description": "27-framework prompt engineering skill for analyzing and improving prompts across 7 intent categories",
|
|
4
|
-
"version": "3.2.
|
|
4
|
+
"version": "3.2.1",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Charles Kelsoe",
|
|
7
7
|
"email": "charles@kelsoe.com"
|
package/README.md
CHANGED
|
@@ -568,7 +568,7 @@ Detects all installed AI agents and lets you choose where to install.
|
|
|
568
568
|
|
|
569
569
|
ChatGPT natively supports [Agent Skills](https://agentskills.io). Available on Business, Enterprise, Edu, Teachers, and Healthcare plans.
|
|
570
570
|
|
|
571
|
-
1. Download [`prompt-architect.skill`](https://github.com/ckelsoe/prompt-architect/releases/latest)
|
|
571
|
+
1. Download [`prompt-architect.skill`](https://github.com/ckelsoe/prompt-architect/releases/latest/download/prompt-architect.skill) (direct download, always latest version)
|
|
572
572
|
2. In ChatGPT, click your profile icon → **Skills**
|
|
573
573
|
3. Click **New skill** → **Upload from your computer**
|
|
574
574
|
4. Upload the `.skill` file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckelsoe/prompt-architect",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.1",
|
|
4
4
|
"description": "Agent skill for analyzing and improving prompts using 27 research-backed frameworks across 7 intent categories. Works with Claude Code, Gemini CLI, Cursor, Copilot, and 30+ Agent Skills compatible tools.",
|
|
5
5
|
"main": "skills/prompt-architect/SKILL.md",
|
|
6
6
|
"keywords": [
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"type": "skill",
|
|
82
82
|
"skillName": "prompt-architect",
|
|
83
83
|
"skillPath": "skills/prompt-architect",
|
|
84
|
-
"version": "3.2.
|
|
84
|
+
"version": "3.2.1",
|
|
85
85
|
"compatibility": {
|
|
86
86
|
"claudeCode": ">=1.0.0"
|
|
87
87
|
},
|
|
@@ -5,7 +5,7 @@ license: MIT
|
|
|
5
5
|
compatibility: Requires no external dependencies. Works with any Agent Skills compatible tool.
|
|
6
6
|
metadata:
|
|
7
7
|
author: ckelsoe
|
|
8
|
-
version: "3.2.
|
|
8
|
+
version: "3.2.1"
|
|
9
9
|
homepage: https://github.com/ckelsoe/prompt-architect
|
|
10
10
|
---
|
|
11
11
|
|
|
@@ -182,6 +182,7 @@ Structure your output in this exact order:
|
|
|
182
182
|
- **No indentation** beyond what the prompt itself genuinely requires
|
|
183
183
|
- **No markdown formatting** inside the block unless the prompt explicitly needs it (e.g., it asks for tables)
|
|
184
184
|
- The user must be able to copy the entire block contents and paste it verbatim with zero editing
|
|
185
|
+
- **Nothing after the code block** — the revised prompt must be the absolute last element in the response. No trailing suggestions, tips, or follow-up text after the closing backticks.
|
|
185
186
|
|
|
186
187
|
### 6. Iterate
|
|
187
188
|
|
|
@@ -328,8 +329,6 @@ Follow these rules:
|
|
|
328
329
|
- Length: same or shorter than the original. Cut fluff, don't add it.
|
|
329
330
|
```
|
|
330
331
|
|
|
331
|
-
Does this match what you need, or should we adjust the tone target or constraints?
|
|
332
|
-
|
|
333
332
|
---
|
|
334
333
|
|
|
335
334
|
## Usage Notes
|