create-team-foundry 3.0.0 → 3.0.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.
Files changed (2) hide show
  1. package/dist/index.js +0 -6
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -24,7 +24,6 @@ async function runPrompts() {
24
24
  intro("create-team-foundry");
25
25
  const tool = await select({
26
26
  message: "Which AI tool does your team use?",
27
- hint: "1 of ~5",
28
27
  options: [
29
28
  { value: "claude", label: "Claude Code" },
30
29
  { value: "gemini", label: "Gemini CLI" },
@@ -35,7 +34,6 @@ async function runPrompts() {
35
34
  cancelIfNeeded(tool);
36
35
  const profile = await select({
37
36
  message: "Team size?",
38
- hint: "2 of ~5",
39
37
  options: [
40
38
  { value: "solo", label: "1\u20133 people (solo profile \u2014 7 files)" },
41
39
  { value: "full", label: "4\u201315 people (full profile \u2014 20 files)" }
@@ -46,7 +44,6 @@ async function runPrompts() {
46
44
  const totalNoFed = questionCount(profileTyped, false, void 0);
47
45
  const repoVisibility = await select({
48
46
  message: "Is this repo public, internal-only, or private?",
49
- hint: `3 of ${totalNoFed}`,
50
47
  options: [
51
48
  { value: "public", label: "Public (GitHub public, open source)" },
52
49
  { value: "internal", label: "Internal (company-private, not public)" },
@@ -58,7 +55,6 @@ async function runPrompts() {
58
55
  if (profile === "full") {
59
56
  const federatedAnswer = await select({
60
57
  message: "Context layout?",
61
- hint: "4 of ?",
62
58
  options: [
63
59
  { value: "flat", label: "Flat (one root CLAUDE.md \u2014 simpler, recommended for most teams)" },
64
60
  { value: "federated", label: "Federated (CLAUDE.md per folder \u2014 for larger teams, 8+ people)" }
@@ -71,7 +67,6 @@ async function runPrompts() {
71
67
  const ingestionQ = profileTyped === "solo" ? 4 : 5;
72
68
  const ingestion = await select({
73
69
  message: "Do you have existing docs to ingest?\n (Strategy docs, old roadmaps, customer research \u2014 the interview uses them to pre-populate answers)",
74
- hint: `${ingestionQ} of ${questionCount(profileTyped, federatedResolved, void 0)}`,
75
70
  options: [
76
71
  { value: "repo", label: "Repo signals only (README, package.json, git history, GitHub PRs/issues)" },
77
72
  { value: "repo+local", label: "Repo + local docs folder (repo signals + point me at a folder)" },
@@ -89,7 +84,6 @@ async function runPrompts() {
89
84
  const total = questionCount(profileTyped, federatedResolved, ingestion);
90
85
  const rawPath = await text({
91
86
  message: "Path to the folder containing your docs?",
92
- hint: `${total} of ${total}`,
93
87
  placeholder: "./docs or /Users/you/exports",
94
88
  validate: (value) => {
95
89
  if (!value.trim()) return "Please enter a path.";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-team-foundry",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "Scaffold a team-foundry into any repo — structured context files for Claude Code, Gemini CLI, and Cursor",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -32,7 +32,7 @@
32
32
  "prettier": "^3.2.0",
33
33
  "tsup": "^8.0.0",
34
34
  "typescript": "^5.4.0",
35
- "vitest": "^1.4.0"
35
+ "vitest": "^4.1.5"
36
36
  },
37
37
  "engines": {
38
38
  "node": ">=18"