Skip to content

Commit 4ad39fc

Browse files
authored
remove triaging labels section + avoid capturing exitOnCtrlC for full-context mode
Signed-off-by: Thibault Sottiaux <tibo@openai.com>
1 parent 1b40e19 commit 4ad39fc

2 files changed

Lines changed: 24 additions & 31 deletions

File tree

README.md

Lines changed: 24 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,30 @@
1010
<details>
1111
<summary><strong>Table&nbsp;of&nbsp;Contents</strong></summary>
1212

13-
1. [Quickstart](#quickstart)
14-
1. [Why Codex?](#why-codex)
15-
1. [Features](#features)
16-
1. [System Requirements](#system-requirements)
17-
1. [Security Model & Permissions](#security-model--permissions)
18-
1. [CLI Reference](#cli-reference)
19-
1. [Memory & Project Docs](#memory--project-docs)
20-
1. [Non‑interactive / CI mode](#non‑interactive--ci-mode)
21-
1. [Recipes](#recipes)
22-
1. [Installation](#installation)
23-
1. [FAQ](#faq)
24-
1. [Contributing](#contributing)
25-
1. [Security &amp; Responsible AI](#security--responsible-ai)
26-
1. [License](#license)
13+
- [Quickstart](#quickstart)
14+
- [Why Codex?](#whycodex)
15+
- [Security Model \& Permissions](#securitymodelpermissions)
16+
- [Platform sandboxing details](#platform-sandboxing-details)
17+
- [System Requirements](#systemrequirements)
18+
- [CLI Reference](#clireference)
19+
- [Memory \& Project Docs](#memoryprojectdocs)
20+
- [Non‑interactive / CI mode](#noninteractivecimode)
21+
- [Recipes](#recipes)
22+
- [Installation](#installation)
23+
- [Configuration](#configuration)
24+
- [FAQ](#faq)
25+
- [Contributing](#contributing)
26+
- [Development workflow](#development-workflow)
27+
- [Writing high‑impact code changes](#writing-highimpact-code-changes)
28+
- [Opening a pull request](#opening-a-pull-request)
29+
- [Review process](#review-process)
30+
- [Community values](#community-values)
31+
- [Getting help](#getting-help)
32+
- [Developer Certificate of Origin (DCO)](#developer-certificate-of-origin-dco)
33+
- [How to sign (recommended flow)](#how-to-sign-recommended-flow)
34+
- [Quick fixes](#quick-fixes)
35+
- [Security \& Responsible AI](#securityresponsibleai)
36+
- [License](#license)
2737

2838
</details>
2939

@@ -315,12 +325,6 @@ npm run format:fix
315325
2. We may ask for changes – please do not take this personally. We value the work, we just also value consistency and long‑term maintainability.
316326
3. When there is consensus that the PR meets the bar, a maintainer will squash‑and‑merge.
317327

318-
### Triaging labels
319-
320-
- `good first issue` – great for newcomers, usually well‑scoped and low risk.
321-
- `help wanted` – higher impact, still looking for outside contributors.
322-
- `discussion` – exploring the problem/solution space; code contributions are discouraged until the direction is clear.
323-
324328
### Community values
325329

326330
- **Be kind and inclusive.** Treat others with respect; we follow the [Contributor Covenant](https://www.contributor-covenant.org/).

codex-cli/src/cli_singlepass.tsx

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,24 +14,13 @@ export async function runSinglePass({
1414
rootPath: string;
1515
}): Promise<void> {
1616
return new Promise((resolve) => {
17-
// In full context mode we want to capture Ctrl+C ourselves so we can use it
18-
// to interrupt long‑running requests without force‑quitting the whole
19-
// process. Ink exits automatically when it detects Ctrl+C unless
20-
// `exitOnCtrlC` is disabled via the render‑options, so make sure to turn it
21-
// off here. All other keyboard handling (including optionally exiting when
22-
// the user presses Ctrl+C while at the main prompt) is implemented inside
23-
// `SinglePassApp`.
24-
2517
render(
2618
<SinglePassApp
2719
originalPrompt={originalPrompt}
2820
config={config}
2921
rootPath={rootPath}
3022
onExit={() => resolve()}
3123
/>,
32-
{
33-
exitOnCtrlC: false,
34-
},
3524
);
3625
});
3726
}

0 commit comments

Comments
 (0)