@elvis1513/auto-coding-skill 0.3.0 → 1.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.
package/cli/src/index.js CHANGED
@@ -62,19 +62,6 @@ function resolveTargetDir(ai, mode, destOverride){
62
62
  die(`unknown ai: ${ai}`);
63
63
  }
64
64
 
65
- function ensureGitignore(projectDir){
66
- const gi = path.join(projectDir, ".gitignore");
67
- const line = "docs/ENGINEERING.md";
68
- if (!exists(gi)) {
69
- fs.writeFileSync(gi, `${line}\n`, "utf-8");
70
- return;
71
- }
72
- const txt = fs.readFileSync(gi, "utf-8");
73
- if (!txt.includes(line)) {
74
- fs.appendFileSync(gi, (txt.endsWith("\n") ? "" : "\n") + line + "\n");
75
- }
76
- }
77
-
78
65
  function main(){
79
66
  const args = parseArgs(process.argv);
80
67
 
@@ -104,8 +91,6 @@ Examples:
104
91
  const assetSkill = path.resolve(here, "..", "assets", "skill");
105
92
  if (!exists(assetSkill)) die(`missing assets at ${assetSkill}`);
106
93
 
107
- const proj = projectRoot();
108
-
109
94
  for (const t of targets) {
110
95
  const dstOverride = args.dest
111
96
  ? (targets.length > 1 ? path.join(args.dest, t) : args.dest)
@@ -119,8 +104,6 @@ Examples:
119
104
  console.log(`[autocoding] installed skill to: ${dst}`);
120
105
  }
121
106
 
122
- if (args.mode === "project") ensureGitignore(proj);
123
-
124
107
  console.log("[autocoding] done.");
125
108
  }
126
109
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elvis1513/auto-coding-skill",
3
- "version": "0.3.0",
3
+ "version": "1.0.1",
4
4
  "description": "CLI installer for auto-coding-skill (Claude Code + Codex CLI) with Go fullstack + Jenkins workflow support.",
5
5
  "type": "module",
6
6
  "bin": {