Skip to content

task card resume workflow#1

Open
mo2g wants to merge 25 commits intomainfrom
codex/task-card-resume-workflow
Open

task card resume workflow#1
mo2g wants to merge 25 commits intomainfrom
codex/task-card-resume-workflow

Conversation

@mo2g
Copy link
Copy Markdown
Owner

@mo2g mo2g commented Apr 13, 2026

No description provided.

Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: ed012ce31b

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread .gitignore
Comment on lines -1 to -5
.DS_Store
node_modules/
coverage/
*.log
.idea/
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Restore ignore rules for generated artifacts

Deleting this file removes ignores for node_modules/, coverage output, IDE metadata, and logs, so routine local commands like npm install/npm test will leave large untracked trees in the worktree and make accidental commits much more likely. Keeping these ignore entries is important for maintainability and clean reviews.

Useful? React with 👍 / 👎.

Comment thread LICENSE
Comment on lines -1 to -5
MIT License

Copyright (c) 2026 Mo

Permission is hereby granted, free of charge, to any person obtaining a copy
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Reintroduce the repository license file

Removing LICENSE drops the explicit grant that allowed reuse and distribution of this template, which can block downstream adoption and packaging even when the code itself works. Unless intentionally relicensing in the same change, this should be restored to avoid a release/legal regression.

Useful? React with 👍 / 👎.

@chatgpt-codex-connector
Copy link
Copy Markdown

You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard.

Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 1671bbe1ff

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread tools/lib/bootstrap.mjs Outdated

const mainBranch = "main";
const initializedGit = await ensureGitRepository(repoRoot, mainBranch);
const initializedGit = dryRun ? false : await ensureGitRepository(repoRoot, mainBranch);
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Fail upgrade when target is not an existing git repo

--upgrade is described as refreshing an already bootstrapped repository, but this path still executes git initialization on any non-dry-run target. If the user passes a mistyped path or a non-repo directory, the command succeeds by creating a new repository and writing template files instead of failing, which can make the real upgrade silently not happen on the intended repo.

Useful? React with 👍 / 👎.

Comment thread tools/lib/bootstrap.mjs Outdated
await writeAgentsFile(repoRoot);
await copyDocs(repoRoot);
await copySkills(repoRoot);
await writeTemplateReadme(repoRoot, { dryRun, actions });
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Do not create README.md during upgrade

Upgrade policy says README.md is skipped, but upgrade currently always calls writeTemplateReadme, which uses overwrite: false and therefore creates README.md whenever it is missing. In repositories that intentionally removed or renamed README.md, running --upgrade will unexpectedly reintroduce template README content and produce unintended diffs.

Useful? React with 👍 / 👎.

@chatgpt-codex-connector
Copy link
Copy Markdown

You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant