create-agentic-starter 0.1.11 → 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.
Files changed (2) hide show
  1. package/README.md +12 -3
  2. package/package.json +1 -1
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, Zed, and similar agentic workflows.
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:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-agentic-starter",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "description": "Scaffold a minimal AI-powered project delivery workflow inside the current folder.",
5
5
  "license": "MIT",
6
6
  "type": "module",