project-blueprint-system 0.2.0-demo.0

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.
Files changed (26) hide show
  1. package/.agents/plugins/marketplace.json +20 -0
  2. package/.claude-plugin/marketplace.json +26 -0
  3. package/DEMO_STATUS.md +37 -0
  4. package/README.md +121 -0
  5. package/bin/project-blueprint.js +8 -0
  6. package/dist/project-blueprint-system-plugin-0.2.0-demo.0.zip +0 -0
  7. package/dist/project-blueprint-system-skill-0.2.0-demo.0.zip +0 -0
  8. package/framework/AGENT_OPERATING_CONTRACT.md +13 -0
  9. package/framework/PROJECT_BLUEPRINT_SYSTEM.md +971 -0
  10. package/lib/cli.js +137 -0
  11. package/lib/doctor.js +80 -0
  12. package/lib/generator.js +631 -0
  13. package/lib/index.js +12 -0
  14. package/lib/registry.js +354 -0
  15. package/package.json +48 -0
  16. package/plugins/project-blueprint-system/.claude-plugin/plugin.json +20 -0
  17. package/plugins/project-blueprint-system/.codex-plugin/plugin.json +35 -0
  18. package/plugins/project-blueprint-system/skills/project-blueprint-system/SKILL.md +109 -0
  19. package/plugins/project-blueprint-system/skills/project-blueprint-system/agents/openai.yaml +4 -0
  20. package/plugins/project-blueprint-system/skills/project-blueprint-system/assets/artifact-template.md +132 -0
  21. package/plugins/project-blueprint-system/skills/project-blueprint-system/assets/project-blueprint-readme-template.md +29 -0
  22. package/plugins/project-blueprint-system/skills/project-blueprint-system/assets/project-manifest-template.yaml +24 -0
  23. package/plugins/project-blueprint-system/skills/project-blueprint-system/references/artifact-contract.md +70 -0
  24. package/plugins/project-blueprint-system/skills/project-blueprint-system/references/operating-model.md +62 -0
  25. package/plugins/project-blueprint-system/skills/project-blueprint-system/references/profiles-and-modules.md +59 -0
  26. package/plugins/project-blueprint-system/skills/project-blueprint-system/references/system-spec.md +971 -0
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "project-blueprint-demo",
3
+ "interface": {
4
+ "displayName": "Project Blueprint Demo Skills"
5
+ },
6
+ "plugins": [
7
+ {
8
+ "name": "project-blueprint-system",
9
+ "source": {
10
+ "source": "local",
11
+ "path": "./plugins/project-blueprint-system"
12
+ },
13
+ "policy": {
14
+ "installation": "AVAILABLE",
15
+ "authentication": "ON_INSTALL"
16
+ },
17
+ "category": "Productivity"
18
+ }
19
+ ]
20
+ }
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "project-blueprint-demo",
3
+ "owner": {
4
+ "name": "Mahmoud Eyada"
5
+ },
6
+ "plugins": [
7
+ {
8
+ "name": "project-blueprint-system",
9
+ "source": "./plugins/project-blueprint-system",
10
+ "description": "Operate a software project from client intake through delivery and operations inside the agent conversation.",
11
+ "version": "0.2.0-demo.0",
12
+ "author": {
13
+ "name": "Mahmoud Eyada"
14
+ },
15
+ "homepage": "https://github.com/Shiro7/project-blueprint-system",
16
+ "repository": "https://github.com/Shiro7/project-blueprint-system",
17
+ "license": "UNLICENSED",
18
+ "keywords": [
19
+ "project-blueprint",
20
+ "solution-architecture",
21
+ "agent-skill"
22
+ ],
23
+ "category": "Productivity"
24
+ }
25
+ ]
26
+ }
package/DEMO_STATUS.md ADDED
@@ -0,0 +1,37 @@
1
+ # Demo Status
2
+
3
+ This is an early public evaluation release.
4
+
5
+ ## What testers should evaluate
6
+
7
+ - Does L1 create the minimum useful project blueprint without excessive documentation?
8
+ - Does L2 separate the artifacts that need independent decisions and review?
9
+ - Does L3 expose sufficient depth without forcing every artifact to be applicable?
10
+ - Can an agent correctly distinguish facts, assumptions, decisions, requirements, verification, and evidence?
11
+ - Does information move clearly from discovery into design, architecture, delivery, and testing?
12
+ - Can the project remain synchronized while Figma and code are implemented together?
13
+ - Are skipped artifacts explicitly marked or explained rather than silently ignored?
14
+ - Can a user install and operate the Skill entirely from the agent UI without a terminal?
15
+ - Does the same `SKILL.md` behave consistently in Codex, ChatGPT Work, Claude, and other compatible hosts?
16
+
17
+ ## Known demo gaps
18
+
19
+ - Artifact-specific question sets need testing and refinement.
20
+ - Domain-level profile overrides are represented in the manifest but are not generated independently yet.
21
+ - Conditional modules currently create activation records and shared guidance; full module-specific artifact packs are planned.
22
+ - Profile upgrade and framework migration workflows are planned.
23
+ - Cross-agent behavior has not been certified.
24
+ - The public ChatGPT/Codex Plugin Directory listing has not been submitted or approved.
25
+
26
+ ## Feedback format
27
+
28
+ Please include:
29
+
30
+ 1. Agent and version used.
31
+ 2. Project type and selected level.
32
+ 3. Installation path and invocation used.
33
+ 4. Information supplied to the agent.
34
+ 5. Files that were useful, missing, duplicated, or unclear.
35
+ 6. Decisions the system failed to request.
36
+ 7. Verification or evidence gaps.
37
+ 8. Suggested profile or module changes.
package/README.md ADDED
@@ -0,0 +1,121 @@
1
+ # Project Blueprint System
2
+
3
+ > **Demo release — not production-ready.** The workflow, profile composition, and cross-agent behavior are being tested and may change before version 1.0.
4
+
5
+ Project Blueprint System is an installable Agent Skill that carries a software project from the first client conversation through discovery, requirements, UX and Figma, solution and data architecture, security, implementation, verification, release, and operations.
6
+
7
+ ## No Terminal Required
8
+
9
+ The product is the Skill, not the command line. After installation, use it from the conversation:
10
+
11
+ > Start a blueprint for this project. Use what I already sent, recommend L1, L2, or L3, and ask me only for the next blocking decision.
12
+
13
+ The agent then creates or updates the project files directly. If the host cannot write to a workspace, it returns the same blueprint as a downloadable ZIP.
14
+
15
+ ## Download
16
+
17
+ - [Standalone Agent Skill ZIP](dist/project-blueprint-system-skill-0.2.0-demo.0.zip) — for Claude and other hosts that accept an Agent Skill ZIP.
18
+ - [Cross-agent Plugin ZIP](dist/project-blueprint-system-plugin-0.2.0-demo.0.zip) — contains both Codex/ChatGPT and Claude plugin manifests.
19
+
20
+ ## Install Inside an Agent
21
+
22
+ ### Codex
23
+
24
+ Open a Codex conversation, invoke `$skill-installer`, and ask it to install:
25
+
26
+ ```text
27
+ Install the Project Blueprint System skill from:
28
+ https://github.com/Shiro7/project-blueprint-system/tree/main/plugins/project-blueprint-system/skills/project-blueprint-system
29
+ ```
30
+
31
+ After installation, select **Project Blueprint System** from Skills or mention `$project-blueprint-system` in the conversation.
32
+
33
+ ### ChatGPT
34
+
35
+ The same plugin package is prepared for the universal ChatGPT and Codex Plugin Directory. Its public directory listing is not live during this demo stage. In ChatGPT Work environments that expose Skill Installer, invoke `@skill-installer` with the same GitHub skill path above.
36
+
37
+ Once the plugin is accepted into the public directory, installation becomes a normal **Install** action from ChatGPT or Codex without a package manager.
38
+
39
+ ### Claude
40
+
41
+ 1. Download the [Standalone Agent Skill ZIP](dist/project-blueprint-system-skill-0.2.0-demo.0.zip).
42
+ 2. In Claude, open **Customize > Skills**.
43
+ 3. Choose **+ > Create skill > Upload a skill**.
44
+ 4. Upload the ZIP and enable **Project Blueprint System**.
45
+
46
+ For Claude Code Desktop, open **Plugins**, add `Shiro7/project-blueprint-system` as a marketplace when the UI offers **Add marketplace**, then install **project-blueprint-system**.
47
+
48
+ ### Other Agents
49
+
50
+ Import the standalone ZIP or point the agent's skill installer at:
51
+
52
+ ```text
53
+ plugins/project-blueprint-system/skills/project-blueprint-system/
54
+ ```
55
+
56
+ The skill follows the open Agent Skills `SKILL.md` structure. Host-specific installation controls still depend on the agent product.
57
+
58
+ ## What the Skill Does
59
+
60
+ - Selects one stable execution profile instead of generating uncontrolled documentation.
61
+ - **L1 Rapid:** 17 composite artifacts for a quick but complete path.
62
+ - **L2 Standard:** 51 independently governed artifacts for normal production work.
63
+ - **L3 Comprehensive:** detailed artifacts for complex, sensitive, regulated, or multi-team products.
64
+ - Accepts normal chat messages, documents, Figma links, screenshots, repositories, ERDs, spreadsheets, tests, and logs.
65
+ - Classifies information as sources, facts, assumptions, questions, decisions, requirements, verification, and evidence.
66
+ - Keeps requirements, UX, architecture, security, implementation, tests, release, and operations connected through stable IDs and handoffs.
67
+ - Records unused artifacts as `NOT_APPLICABLE` with a reason, owner, evidence, approval, and reopen condition.
68
+ - Validates structure and content by inspecting the project files; it does not ask the user to run a command.
69
+
70
+ ## Example Conversation
71
+
72
+ ```text
73
+ User: Start a blueprint for this clinic portal. It has patients, doctors,
74
+ admins, appointments, payments, Arabic and English, and a mobile app.
75
+
76
+ Skill: I recommend L2 Standard with deeper security and privacy coverage.
77
+ Before I create the first project set, I need one blocking decision:
78
+ will the portal store clinical records or only appointment metadata?
79
+ ```
80
+
81
+ Later, the user can simply send another message:
82
+
83
+ ```text
84
+ The client confirmed that doctors can reschedule appointments, but patients
85
+ can only cancel up to 24 hours before the appointment. Here is the Figma link.
86
+ ```
87
+
88
+ The Skill routes the information to the canonical requirements, roles, journeys, Figma, authorization, API, verification, and traceability artifacts, then reports what changed and what decision comes next.
89
+
90
+ ## Repository Layout
91
+
92
+ ```text
93
+ project-blueprint-system/
94
+ ├── .agents/plugins/marketplace.json # Codex/ChatGPT demo marketplace
95
+ ├── .claude-plugin/marketplace.json # Claude demo marketplace
96
+ ├── plugins/project-blueprint-system/
97
+ │ ├── .codex-plugin/plugin.json
98
+ │ ├── .claude-plugin/plugin.json
99
+ │ └── skills/project-blueprint-system/
100
+ │ ├── SKILL.md
101
+ │ ├── agents/openai.yaml
102
+ │ ├── assets/
103
+ │ └── references/
104
+ └── dist/
105
+ ├── project-blueprint-system-skill-0.2.0-demo.0.zip
106
+ └── project-blueprint-system-plugin-0.2.0-demo.0.zip
107
+ ```
108
+
109
+ The JavaScript package remains only as a compatibility and test harness for this demo. It is not the intended user experience.
110
+
111
+ ## Demo Limitations
112
+
113
+ - The artifact question banks and generated contracts still need real-world testing.
114
+ - L2 and L3 need evaluation across different project types and agent products.
115
+ - Domain-level profile overrides are defined but still need more cross-agent tests.
116
+ - Conditional modules are preliminary.
117
+ - The system does not guarantee legal, regulatory, privacy, accessibility, or security compliance.
118
+ - A public ChatGPT/Codex Plugin Directory listing requires submission and review.
119
+ - This demo is `UNLICENSED`; evaluation is allowed, but a production and redistribution license has not been selected.
120
+
121
+ See [DEMO_STATUS.md](DEMO_STATUS.md) for the test checklist and feedback format.
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env node
2
+
3
+ const { run } = require('../lib/cli');
4
+
5
+ run(process.argv.slice(2)).catch((error) => {
6
+ console.error(`project-blueprint: ${error.message}`);
7
+ process.exitCode = 1;
8
+ });
@@ -0,0 +1,13 @@
1
+ # Agent Operating Contract
2
+
3
+ This framework is a demo-stage operating system, not a documentation checklist.
4
+
5
+ For every information batch:
6
+
7
+ 1. Preserve sources.
8
+ 2. Separate facts, assumptions, questions, decisions, requirements, verification, and evidence.
9
+ 3. Update the canonical owner artifact.
10
+ 4. Propagate stable IDs through downstream design, architecture, implementation, testing, and operations.
11
+ 5. Report contradictions, blockers, required decisions, verification, evidence, and next step.
12
+
13
+ Never silently skip an applicable artifact. Never claim approval or verification without an owner and inspectable basis.