@viniciuscarvalho/feature-marker 4.0.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.
- package/LICENSE +21 -0
- package/README.md +69 -0
- package/bin/feature-marker.js +299 -0
- package/dist/agents/feature-marker.md +656 -0
- package/dist/feature-marker/.claude/settings.local.json +13 -0
- package/dist/feature-marker/SKILL.md +405 -0
- package/dist/feature-marker/feature-marker.sh +239 -0
- package/dist/feature-marker/install.sh +183 -0
- package/dist/feature-marker/lib/config.sh +89 -0
- package/dist/feature-marker/lib/dependency-installer.sh +206 -0
- package/dist/feature-marker/lib/menu.sh +329 -0
- package/dist/feature-marker/lib/platform-detector.sh +105 -0
- package/dist/feature-marker/lib/spec-workflow-bridge.sh +383 -0
- package/dist/feature-marker/lib/state-manager.sh +168 -0
- package/dist/feature-marker/lib/ui.sh +148 -0
- package/dist/feature-marker/resources/commit.md +165 -0
- package/dist/feature-marker/resources/spec-workflow/ABSTRACTION_PLAN.md +712 -0
- package/dist/feature-marker/resources/spec-workflow/README.md +129 -0
- package/dist/feature-marker/resources/spec-workflow/references/config.md +201 -0
- package/dist/feature-marker/resources/spec-workflow/references/personas.md +165 -0
- package/dist/feature-marker/resources/spec-workflow/references/spec-template.md +189 -0
- package/dist/feature-marker/resources/spec-workflow/references/spec-writer-integration.md +150 -0
- package/dist/feature-marker/resources/spec-workflow/skills/create-worktree/SKILL.md +135 -0
- package/dist/feature-marker/resources/spec-workflow/skills/idea-explorer/SKILL.md +107 -0
- package/dist/feature-marker/resources/spec-workflow/skills/spec-executor/SKILL.md +367 -0
- package/dist/feature-marker/resources/spec-workflow/skills/spec-orchestrator/SKILL.md +398 -0
- package/dist/feature-marker/resources/spec-workflow/skills/spec-workflow-init/SKILL.md +331 -0
- package/dist/feature-marker/resources/spec-workflow/skills/spec-writer/SKILL.md +379 -0
- package/package.json +47 -0
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@viniciuscarvalho/feature-marker",
|
|
3
|
+
"version": "4.0.0",
|
|
4
|
+
"description": "Automate your feature development workflow with AI-powered checkpoints for Claude Code",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"claude",
|
|
7
|
+
"claude-code",
|
|
8
|
+
"ai",
|
|
9
|
+
"workflow",
|
|
10
|
+
"feature-development",
|
|
11
|
+
"prd",
|
|
12
|
+
"tech-spec",
|
|
13
|
+
"automation",
|
|
14
|
+
"cli"
|
|
15
|
+
],
|
|
16
|
+
"homepage": "https://github.com/Viniciuscarvalho/Feature-marker#readme",
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/Viniciuscarvalho/Feature-marker/issues"
|
|
19
|
+
},
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/Viniciuscarvalho/Feature-marker.git"
|
|
23
|
+
},
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"author": "Vinicius Carvalho <vinicius@example.com>",
|
|
26
|
+
"type": "module",
|
|
27
|
+
"bin": {
|
|
28
|
+
"feature-marker": "./bin/feature-marker.js"
|
|
29
|
+
},
|
|
30
|
+
"files": [
|
|
31
|
+
"bin/",
|
|
32
|
+
"lib/",
|
|
33
|
+
"dist/",
|
|
34
|
+
"README.md",
|
|
35
|
+
"LICENSE"
|
|
36
|
+
],
|
|
37
|
+
"scripts": {
|
|
38
|
+
"prepare": "node scripts/bundle.js",
|
|
39
|
+
"postinstall": "node bin/feature-marker.js install --silent || true"
|
|
40
|
+
},
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">=18.0.0"
|
|
43
|
+
},
|
|
44
|
+
"publishConfig": {
|
|
45
|
+
"access": "public"
|
|
46
|
+
}
|
|
47
|
+
}
|