create-agentic-starter 0.1.10 → 0.1.12
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.
- package/README.md +12 -3
- package/dist/index.js +8 -864
- package/dist/templates/commands/architecture.md +28 -0
- package/dist/templates/commands/create-brd.md +30 -0
- package/dist/templates/commands/create-estimate.md +32 -0
- package/dist/templates/commands/create-frd.md +30 -0
- package/dist/templates/commands/create-plan.md +38 -0
- package/dist/templates/commands/create-proposal.md +29 -0
- package/dist/templates/commands/create-tasks.md +35 -0
- package/dist/templates/commands/project-requirements.md +34 -0
- package/dist/templates/core/context.md +96 -0
- package/dist/templates/core/init.md +70 -0
- package/dist/templates/meta/agents.md +77 -0
- package/dist/templates/scripts/README.md +58 -0
- package/dist/templates/scripts/_shared.js +114 -0
- package/dist/templates/scripts/generate_brd.js +48 -0
- package/dist/templates/scripts/generate_estimate.js +28 -0
- package/dist/templates/scripts/generate_frd.js +39 -0
- package/dist/templates/scripts/generate_plan.js +62 -0
- package/dist/templates/scripts/generate_proposal.js +75 -0
- package/dist/templates/scripts/generate_tasks.js +28 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ It is meant for teams who repeatedly do the same early project work:
|
|
|
9
9
|
- define architecture
|
|
10
10
|
- prepare BRD, FRD, estimate, proposal, plan, and task outputs
|
|
11
11
|
|
|
12
|
-
Instead of rebuilding prompts, folders, and working conventions for every new project, this package gives the team a standard `.agentic/` setup that works across AI tools such as Codex, Claude, Cursor,
|
|
12
|
+
Instead of rebuilding prompts, folders, and working conventions for every new project, this package gives the team a standard `.agentic/` setup that works across AI tools such as Codex, Claude, Cursor, Antigravity, and similar agentic workflows.
|
|
13
13
|
|
|
14
14
|
## What This Project Is Trying To Achieve
|
|
15
15
|
|
|
@@ -47,8 +47,6 @@ When you run it, it will:
|
|
|
47
47
|
- recreate `.agentic/`
|
|
48
48
|
- create `.docs/` for user-facing outputs
|
|
49
49
|
- preserve an existing `AGENTS.md` and append a marked `create-agentic-starter` section when needed
|
|
50
|
-
- never modify `.gitignore`
|
|
51
|
-
- never modify `README.md`
|
|
52
50
|
- print the next step for the team: start with `@.agentic/init.md`
|
|
53
51
|
|
|
54
52
|
## What Gets Created
|
|
@@ -73,6 +71,17 @@ This gives you a clear split:
|
|
|
73
71
|
- `.agentic/workspace/scripts/` for starter export scripts
|
|
74
72
|
- `.docs/` for final user-facing outputs
|
|
75
73
|
|
|
74
|
+
## Customization
|
|
75
|
+
|
|
76
|
+
The generated scaffold is fully yours after it is created.
|
|
77
|
+
|
|
78
|
+
- you can add any new prompt files you want under `.agentic/commands/`
|
|
79
|
+
- you can edit the existing prompts to match your workflow
|
|
80
|
+
- you can remove commands, files, or folders that you do not want
|
|
81
|
+
- you can version control everything with git inside your own repository
|
|
82
|
+
|
|
83
|
+
This setup stays inside your codebase. Your project memory, prompts, documents, and scripts live in your repo, so the working context is owned by your team and does not need to live in an external shared system.
|
|
84
|
+
|
|
76
85
|
## Export Scripts
|
|
77
86
|
|
|
78
87
|
The scaffold includes starter export scripts under `.agentic/workspace/scripts/` for:
|