You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ your contribution is aligned with the project's goals.
21
21
npm run test:integration
22
22
npm start
23
23
```
24
-
All tests should pass, and the application should start successfully with confirmation messaging in the terminal.
24
+
All tests should pass, and the application should start successfully with a confirmation message in the terminal.
25
25
26
26
##### Windows and repository symlinks
27
27
@@ -48,7 +48,7 @@ Our process follows the standard GitHub fork and pull request workflow.
48
48
##### Main repository branches
49
49
- The `main` branch currently represents both development and stable releases
50
50
51
-
> In the future, a consideration for a `stable` branch may be made against an increase in contributions.
51
+
> In the future, if there is an increase in contributions, we may consider implementing a `stable` branch.
52
52
> -`main` would be the default branch for development and feature work rebased from `stable` after release.
53
53
> -`stable` would be a branch used for stable releases/hashes, reference links, and only updated with release commits.
54
54
@@ -93,8 +93,8 @@ Commit messages follow two basic guidelines:
93
93
-**Description**: What the commit work encompasses.
94
94
-**#PR_NUMBER**: The pull request number. Typically added automatically during merge/squash operations. Including it manually is optional. It can help with traceability during review.
95
95
96
-
> If your **pull request contains multiple commits**, they will be squashed into a single commit before merging and the messaging
97
-
> altered to reflect current guidelines.
96
+
> If your **pull request contains multiple commits**, they will be squashed into a single commit before merging, and the messaging
97
+
> will be altered to reflect current guidelines.
98
98
99
99
#### Pull request test failures
100
100
Before any review takes place, all tests should pass. You may be asked to update your pull request to resolve any failing tests
Copy file name to clipboardExpand all lines: docs/development.md
+4-5Lines changed: 4 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ Complete guide to using the PatternFly MCP Server for development including CLI
32
32
33
33
#### Notes
34
34
-**HTTP transport mode** - By default, the server uses `stdio`. Use the `--http` flag to enable HTTP transport.
35
-
-**Logging** - The server uses a `diagnostics_channel`-based logger that keeps STDIO stdout pure by default.
35
+
-**Logging** - The server uses a `diagnostics_channel`-based logger that keeps stdout pure by default.
36
36
-**Programmatic API** - The server can also be used programmatically with options. See [Programmatic usage](#programmatic-usage) for more details.
37
37
-**Tool plugins** - The server can load external tool plugins at startup. See [MCP tool plugins](#mcp-tool-plugins) for more details.
38
38
-**Test Mode** - When `--mode test` is used, the server redirects resource requests to the URL provided by `--mode-test-url`, enabling E2E testing without local filesystem access.
// Optional: observe refined server logs in‑process.
256
+
// Optional: observe refined server logs in-process.
258
257
// We recommend getting in the habit of avoiding use of console.log and info, they pollute STDOUT.
259
258
server.onLog((event) => {
260
259
if (event.level!=='debug') {
@@ -276,7 +275,7 @@ See [examples/](examples/) for more programmatic usage examples.
276
275
277
276
## MCP tool plugins
278
277
279
-
You can extend the server's capabilities by loading **Tool Plugins** at startup. These plugins run out‑of‑process in an isolated **Tools Host** to ensure security and stability.
278
+
You can extend the server's capabilities by loading **Tool Plugins** at startup. These plugins run out-of-process in an isolated **Tools Host** to ensure security and stability.
0 commit comments