@josephyan/qingflow-app-user-mcp 0.2.0-beta.1001 → 0.2.0-beta.1002

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/README.md CHANGED
@@ -3,13 +3,13 @@
3
3
  Install:
4
4
 
5
5
  ```bash
6
- npm install @josephyan/qingflow-app-user-mcp@0.2.0-beta.1001
6
+ npm install @josephyan/qingflow-app-user-mcp@0.2.0-beta.1002
7
7
  ```
8
8
 
9
9
  Run:
10
10
 
11
11
  ```bash
12
- npx -y -p @josephyan/qingflow-app-user-mcp@0.2.0-beta.1001 qingflow-app-user-mcp
12
+ npx -y -p @josephyan/qingflow-app-user-mcp@0.2.0-beta.1002 qingflow-app-user-mcp
13
13
  ```
14
14
 
15
15
  Environment:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@josephyan/qingflow-app-user-mcp",
3
- "version": "0.2.0-beta.1001",
3
+ "version": "0.2.0-beta.1002",
4
4
  "description": "Operational end-user MCP for Qingflow records, tasks, comments, and directory workflows.",
5
5
  "license": "MIT",
6
6
  "type": "module",
package/pyproject.toml CHANGED
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "qingflow-mcp"
7
- version = "0.2.0b1001"
7
+ version = "0.2.0b1002"
8
8
  description = "User-authenticated MCP server for Qingflow"
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -5,7 +5,7 @@ from pathlib import Path
5
5
 
6
6
  __all__ = ["__version__"]
7
7
 
8
- _FALLBACK_VERSION = "0.2.0b1001"
8
+ _FALLBACK_VERSION = "0.2.0b1002"
9
9
 
10
10
 
11
11
  def _resolve_local_pyproject_version() -> str | None:
@@ -16,8 +16,10 @@ except ImportError: # pragma: no cover - non-POSIX fallback
16
16
 
17
17
  T = TypeVar("T")
18
18
  RAW_TTY_NEWLINE = "\r\n"
19
- ESCAPE_SEQUENCE_TIMEOUT_SECONDS = 0.05
20
- ESCAPE_SEQUENCE_FOLLOWUP_TIMEOUT_SECONDS = 0.005
19
+ # Give terminal escape sequences a slightly roomier window so arrow keys
20
+ # still parse correctly when an outer Node/npm launcher adds a bit of PTY lag.
21
+ ESCAPE_SEQUENCE_TIMEOUT_SECONDS = 0.2
22
+ ESCAPE_SEQUENCE_FOLLOWUP_TIMEOUT_SECONDS = 0.02
21
23
 
22
24
 
23
25
  @dataclass(slots=True)