sigit-code 1.0.3__tar.gz → 1.0.4__tar.gz

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.
Files changed (38) hide show
  1. {sigit_code-1.0.3 → sigit_code-1.0.4}/.agents/skills/agent-client-protocol/SKILL.md +7 -2
  2. {sigit_code-1.0.3 → sigit_code-1.0.4}/.agents/skills/ai-assisted-coding/SKILL.md +7 -2
  3. {sigit_code-1.0.3 → sigit_code-1.0.4}/.agents/skills/branding/SKILL.md +6 -1
  4. sigit_code-1.0.4/.agents/skills/sigit-code-release/SKILL.md +57 -0
  5. {sigit_code-1.0.3 → sigit_code-1.0.4}/.agents/skills/tool-calling/SKILL.md +7 -2
  6. {sigit_code-1.0.3 → sigit_code-1.0.4}/CHANGELOG.md +11 -1
  7. {sigit_code-1.0.3 → sigit_code-1.0.4}/Cargo.lock +165 -230
  8. {sigit_code-1.0.3 → sigit_code-1.0.4}/Cargo.toml +5 -5
  9. {sigit_code-1.0.3 → sigit_code-1.0.4}/PKG-INFO +4 -4
  10. {sigit_code-1.0.3 → sigit_code-1.0.4}/pypi/pyproject.toml +2 -2
  11. {sigit_code-1.0.3 → sigit_code-1.0.4}/pyproject.toml +2 -2
  12. {sigit_code-1.0.3 → sigit_code-1.0.4}/src/chat.rs +77 -6
  13. {sigit_code-1.0.3 → sigit_code-1.0.4}/.agents/AGENTS.md +0 -0
  14. {sigit_code-1.0.3 → sigit_code-1.0.4}/.github/workflows/ci.yml +0 -0
  15. {sigit_code-1.0.3 → sigit_code-1.0.4}/.github/workflows/release-github.yml +0 -0
  16. {sigit_code-1.0.3 → sigit_code-1.0.4}/.github/workflows/release-homebrew.yml +0 -0
  17. {sigit_code-1.0.3 → sigit_code-1.0.4}/.github/workflows/release-npm.yml +0 -0
  18. {sigit_code-1.0.3 → sigit_code-1.0.4}/.github/workflows/release-pypi.yml +0 -0
  19. {sigit_code-1.0.3 → sigit_code-1.0.4}/.gitignore +0 -0
  20. {sigit_code-1.0.3 → sigit_code-1.0.4}/.nvmrc +0 -0
  21. {sigit_code-1.0.3 → sigit_code-1.0.4}/LICENSE +0 -0
  22. {sigit_code-1.0.3 → sigit_code-1.0.4}/README.md +0 -0
  23. {sigit_code-1.0.3 → sigit_code-1.0.4}/npm/README.md.tmpl +0 -0
  24. {sigit_code-1.0.3 → sigit_code-1.0.4}/npm/package-main.json.tmpl +0 -0
  25. {sigit_code-1.0.3 → sigit_code-1.0.4}/npm/package.json.tmpl +0 -0
  26. {sigit_code-1.0.3 → sigit_code-1.0.4}/npm/scripts/render-main-package.cjs +0 -0
  27. {sigit_code-1.0.3 → sigit_code-1.0.4}/npm/scripts/render-platform-package.cjs +0 -0
  28. {sigit_code-1.0.3 → sigit_code-1.0.4}/npm/sigit/.gitignore +0 -0
  29. {sigit_code-1.0.3 → sigit_code-1.0.4}/npm/sigit/README.md +0 -0
  30. {sigit_code-1.0.3 → sigit_code-1.0.4}/npm/sigit/package.json +0 -0
  31. {sigit_code-1.0.3 → sigit_code-1.0.4}/npm/sigit/src/index.ts +0 -0
  32. {sigit_code-1.0.3 → sigit_code-1.0.4}/npm/sigit/tsconfig.json +0 -0
  33. {sigit_code-1.0.3 → sigit_code-1.0.4}/pypi/README.md +0 -0
  34. {sigit_code-1.0.3 → sigit_code-1.0.4}/rust-toolchain.toml +0 -0
  35. {sigit_code-1.0.3 → sigit_code-1.0.4}/src/main.rs +0 -0
  36. {sigit_code-1.0.3 → sigit_code-1.0.4}/src/models.rs +0 -0
  37. {sigit_code-1.0.3 → sigit_code-1.0.4}/src/setup.rs +0 -0
  38. {sigit_code-1.0.3 → sigit_code-1.0.4}/src/tools.rs +0 -0
@@ -1,4 +1,9 @@
1
- # Skill: Agent Client Protocol (ACP) — Rust Implementation
1
+ ---
2
+ name: agent-client-protocol
3
+ description: Implement or debug Agent Client Protocol (ACP) support in Rust for siGit Code. Use when working on ACP JSON-RPC over stdio, the agent-client-protocol crate, session or prompt handlers, streaming notifications, or editor integration.
4
+ ---
5
+
6
+ # Agent Client Protocol
2
7
 
3
8
  ## Overview
4
9
 
@@ -311,4 +316,4 @@ Editor Agent
311
316
  10. **Never write to stdout except JSON-RPC** — any library that prints to
312
317
  stdout (`mistralrs` model metadata, stray `println!`, whatever) will
313
318
  corrupt the wire. Redirect diagnostics to stderr. If a dependency writes
314
- to stdout internally, fix it or suppress it before shipping.
319
+ to stdout internally, fix it or suppress it before shipping.
@@ -1,4 +1,9 @@
1
- # Skill: AI-Assisted Coding Agents — Onde Inference Integration
1
+ ---
2
+ name: ai-assisted-coding
3
+ description: Build or maintain AI-assisted coding features in Rust using Onde Inference. Use when working on ChatEngine integration, model loading, streaming inference, history management, sampling config, or local coding-agent architecture.
4
+ ---
5
+
6
+ # AI-Assisted Coding
2
7
 
3
8
  ## Overview
4
9
 
@@ -358,4 +363,4 @@ For sandboxed environments (iOS, tvOS, Android):
358
363
  6. **Forgetting that `generate()` doesn't update history** — use it for
359
364
  one-shot enhancements (prompt expansion, code review) that shouldn't pollute
360
365
  the main conversation. Use `send_message()` / `stream_message()` for the
361
- primary turn loop.
366
+ primary turn loop.
@@ -1,4 +1,9 @@
1
- # Skill: Branding and naming reference
1
+ ---
2
+ name: branding
3
+ description: Keep siGit Code branding, naming, and package references consistent. Use when editing docs, release notes, UI copy, package metadata, setup guides, or any prose that mentions the product, CLI, company, or Onde Inference.
4
+ ---
5
+
6
+ # Branding
2
7
 
3
8
  ## Overview
4
9
 
@@ -0,0 +1,57 @@
1
+ ---
2
+ name: sigit-code-release
3
+ description: Prepare and verify siGit Code releases. Use when bumping versions, checking Cargo, npm, or PyPI package metadata, validating release notes, confirming CI readiness, or assembling a release checklist for a new siGit Code version.
4
+ ---
5
+
6
+ # siGit Code Release
7
+
8
+ Use this skill when preparing a release for this repository.
9
+
10
+ ## Focus areas
11
+
12
+ - Keep the branded product name as `siGit Code` in prose and `sigit` for commands, crate names, repo paths, and package identifiers.
13
+ - Verify version consistency across release surfaces, but respect which files are real sources of truth versus generated or release-time rewritten artifacts.
14
+ - Check release-facing docs such as `README.md`, `CHANGELOG.md`, workflow notes, and package metadata for stale version references or incorrect naming.
15
+ - Validate the local release path pragmatically: formatting, linting, targeted tests, and any repo-specific release checks that matter for the requested version.
16
+
17
+ ## Working approach
18
+
19
+ 1. Read the files that define the release version and distribution metadata before proposing any changes.
20
+ 2. Treat `Cargo.toml` as the primary release version source for the Rust crate and the PyPI package in this repository.
21
+ 3. Check how the release workflows rewrite or derive versions before editing checked-in npm or Python metadata.
22
+ 4. Prefer targeted verification commands that match CI or packaging workflows already present in the repository.
23
+ 5. Report blockers clearly: failed checks, version mismatches, missing changelog entries, or unpublished packaging changes.
24
+
25
+ ## Repo-specific release rules
26
+
27
+ - Bump the crate version in `Cargo.toml`.
28
+ - Update the root `sigit` package entry in `Cargo.lock` when the crate version changes.
29
+ - Add or update the top changelog entry in `CHANGELOG.md` for the release being cut.
30
+ - Do not treat `npm/sigit/package.json` `0.0.0-dev` as a bug by default. The npm release workflow rewrites it at publish time using `npm/scripts/render-main-package.cjs` and the release tag.
31
+ - Do not add a hardcoded version to `pypi/pyproject.toml` for normal releases. PyPI uses `maturin` with `dynamic = ["version"]` and derives the published package version from `Cargo.toml`.
32
+ - Release workflows are tag-driven. `release-github.yml`, `release-npm.yml`, and `release-pypi.yml` all derive `RELEASE_VERSION` from a `v*.*.*` tag or a manually supplied tag input.
33
+
34
+ ## Typical files to inspect
35
+
36
+ - `Cargo.toml`
37
+ - `Cargo.lock`
38
+ - `CHANGELOG.md`
39
+ - `README.md`
40
+ - `npm/sigit/package.json`
41
+ - `npm/scripts/render-main-package.cjs`
42
+ - `npm/`
43
+ - `pypi/`
44
+ - `.github/workflows/`
45
+
46
+ ## Release checklist
47
+
48
+ - Version bump is applied everywhere it needs to be.
49
+ - `Cargo.toml` and the root crate entry in `Cargo.lock` match.
50
+ - `CHANGELOG.md` has a correct top entry for the new release.
51
+ - `npm/sigit/package.json` is left at `0.0.0-dev` unless the packaging flow itself changed.
52
+ - `pypi/pyproject.toml` still uses dynamic versioning unless there is a deliberate packaging change.
53
+ - Release workflows still derive their version from the tag as expected.
54
+ - Release notes or changelog entries match the actual changes.
55
+ - CI-equivalent local checks pass for the relevant platform or target.
56
+ - Package names, install commands, and branding stay consistent.
57
+ - Any known release limitations are called out explicitly.
@@ -1,4 +1,9 @@
1
- # Skill: Tool Calling in siGit Code
1
+ ---
2
+ name: tool-calling
3
+ description: Implement or debug tool calling in siGit Code across the app, Onde Inference, and mistral.rs. Use when working on tool schemas, execution loops, model support, session cwd handling, or tool-call troubleshooting.
4
+ ---
5
+
6
+ # Tool Calling
2
7
 
3
8
  ## Overview
4
9
 
@@ -287,4 +292,4 @@ The `qwen3_8b()` constructor only exists in the local Onde SDK until it's pushed
287
292
  | `sigit/src/setup.rs` | HF cache setup pointing to shared App Group container |
288
293
  | `onde/src/inference/types.rs` | `ToolDefinition`, `ToolCallRequest`, `ToolResult`, `ToolAwareResult` |
289
294
  | `onde/src/inference/engine.rs` | `send_message_with_tools()`, `send_tool_results()`, `attach_tools()`, `parse_tool_calls()`, `replay_history_with_tools()`, `GgufModelConfig::qwen3_8b()` |
290
- | `onde/src/inference/models.rs` | Model constants and `SUPPORTED_MODELS` array |
295
+ | `onde/src/inference/models.rs` | Model constants and `SUPPORTED_MODELS` array |
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.4
4
+
5
+ This release tightens up the terminal experience and finishes a few release-facing cleanup items.
6
+
7
+ ### What changed
8
+
9
+ - Added bold rich-text rendering in the TUI for assistant replies, so `**text**` now displays with terminal styling instead of raw markdown markers
10
+ - Refreshed the bundled skill metadata to follow the current Agent Skills `SKILL.md` format
11
+ - Synced the crate release metadata for the `1.0.4` cut
12
+
3
13
  ## 1.0.3
4
14
 
5
15
  This is the cleanup release for the editor-side startup problems.
@@ -143,4 +153,4 @@ ACP and editor mode work on Windows. The part that is still missing is the inter
143
153
 
144
154
  ---
145
155
 
146
- *© 2026 [smbCloud](https://smbcloud.xyz/) (Splitfire AB).*
156
+ *© 2026 [smbCloud](https://smbcloud.xyz/) (Splitfire AB).*