@lazyingart/agintiflow 0.20.62 → 0.20.63

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lazyingart/agintiflow",
3
- "version": "0.20.62",
3
+ "version": "0.20.63",
4
4
  "type": "module",
5
5
  "description": "Low-cost, project-aware Web and CLI agents with DeepSeek/Venice/OpenAI routing, visible tool calls, durable sessions, scouts, AAPS, SCS, and guarded local execution.",
6
6
  "license": "Apache-2.0",
@@ -72,6 +72,9 @@ assert(selectedIds("write README API docs and a tutorial").includes("docs-knowle
72
72
  assert(selectedIds("fix failing tests and add regression coverage").includes("qa-testing"), "QA prompt did not select qa-testing");
73
73
  const qaSkill = skills.find((skill) => skill.id === "qa-testing");
74
74
  assert(qaSkill?.body.includes("Do not invent staged bugs"), "QA skill does not guard against fake staged failures");
75
+ const pythonSkill = skills.find((skill) => skill.id === "python");
76
+ assert(pythonSkill?.body.includes("PEP 701 relaxed f-strings"), "Python skill must mention 3.12 f-string compatibility traps");
77
+ assert(pythonSkill?.body.includes("only proves the active interpreter"), "Python skill must guard syntax-check overclaims");
75
78
  assert(selectedIds("write SQL migrations for sqlite schema").includes("database"), "database prompt did not select database");
76
79
  assert(selectedIds("debug Docker deployment logs and port config").includes("devops-deployment"), "devops prompt did not select devops-deployment");
77
80
  assert(selectedIds("review auth security and secrets handling").includes("security-review"), "security prompt did not select security-review");
@@ -21,4 +21,8 @@ tools:
21
21
 
22
22
  Inspect `pyproject.toml`, requirements, package layout, and tests. Prefer stdlib tests when dependency installs are unnecessary; otherwise use project-local venv/conda/uv or Docker.
23
23
 
24
+ When reporting syntax, lint, test, or runtime results, always include the actual interpreter path/version and whether commands ran on the host or in Docker/venv. `py_compile` only proves the active interpreter accepted the files.
25
+
26
+ For compatibility claims, avoid grep-only feature scans. Treat these as version-sensitive unless the target interpreter is tested: f-strings require Python 3.6+, `:=` requires 3.8+, builtin generic hints such as `list[int]` require 3.9+ unless postponed annotations are used, `match/case` and `X | Y` type unions require 3.10+, `except*`/`ExceptionGroup` require 3.11+, and PEP 701 relaxed f-strings (backslashes, comments, or previously invalid quoting/nesting inside f-string expressions) require 3.12+. If host compatibility matters and only Docker was tested, state that limitation instead of saying the code is safe on the host.
27
+
24
28
  For plots and artifacts, save files with clear names and send useful outputs to canvas.
@@ -143,7 +143,7 @@ export const TASK_PROFILES = {
143
143
  id: "python",
144
144
  label: "Python",
145
145
  prompt:
146
- "Bias toward Python best practices without ignoring non-Python project context. Inspect pyproject/requirements, create scripts/packages/tests as files, prefer project-local venv/conda/uv or Docker for setup, and run focused smoke checks when shell is enabled. For syntax, lint, test, or runtime claims, capture the actual interpreter path/version and sandbox/host environment; never claim support for untested Python versions or host interpreters just because a Docker/venv check passed.",
146
+ "Bias toward Python best practices without ignoring non-Python project context. Inspect pyproject/requirements, create scripts/packages/tests as files, prefer project-local venv/conda/uv or Docker for setup, and run focused smoke checks when shell is enabled. For syntax, lint, test, or runtime claims, capture the actual interpreter path/version and sandbox/host environment; never claim support for untested Python versions or host interpreters just because a Docker/venv check passed. Remember Python syntax compatibility traps: f-strings require 3.6+, walrus 3.8+, builtin generics 3.9+, match/case and union type syntax 3.10+, except*/ExceptionGroup 3.11+, and relaxed PEP 701 f-string expressions with backslashes/comment/complex quoting require 3.12+.",
147
147
  tools: ["files", "shell", "sandbox"],
148
148
  },
149
149
  shell: {