Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
c72d266
feat: add Code of Conduct and Security Policy documents
TrueNine May 7, 2026
99dcf53
fix: update tool definitions and enhance error logging
TrueNine May 7, 2026
2921d79
fix: improve logger stability and performance by handling timeouts an…
TrueNine May 7, 2026
ba6b16c
refactor: remove warp output plan references and related code
TrueNine May 7, 2026
8efb52d
chore(deps): bump npm-workspace group with 19 updates (#393)
dependabot[bot] May 7, 2026
bf65b36
chore(deps): bump cargo-workspace group with 6 updates (#392)
dependabot[bot] May 7, 2026
28bee54
chore(deps): bump github-actions group with 2 updates (#391)
dependabot[bot] May 7, 2026
84fe516
fix(mcp): log unhandled notifications at trace level
TrueNine May 7, 2026
e975926
fix(gui): 修复多处静默吞异常,添加Toast通知和错误日志
TrueNine May 7, 2026
b1daf4f
perf(cleanup): cache resolve_absolute_path in BatchedGlobPlanner (Fix…
TrueNine May 7, 2026
4299e8c
fix(services): extract shared build_output_files into services/output…
TrueNine May 7, 2026
ef04b48
refactor(git_discovery): replace manual fs git detection with git2 cr…
TrueNine May 7, 2026
750e88a
feat: skip non-git-managed project dirs during aindex sync (Fixes #359)
TrueNine May 7, 2026
b9517da
fix(deno_runtime): 添加警告以处理非数组类型的allowedEnv/allowedEnvVars
TrueNine May 11, 2026
d7b132b
fix(.gitignore): 添加.idea/到忽略列表
TrueNine May 11, 2026
1b82f0c
feat(tests): 在各个测试中初始化 Git 仓库以确保隔离性
TrueNine May 11, 2026
e6bdfde
feat(clean_service): 添加对遗留适配器残留文件的清理支持
TrueNine May 11, 2026
abd0137
feat(tests): 使用共享助手函数简化测试中的HOME环境变量管理
TrueNine May 12, 2026
97e77da
chore: 升级依赖并调整文档 MDX 组件初始化
TrueNine Aug 1, 2026
35a8648
chore: 升级 pnpm/Cargo 依赖并适配测试断言
TrueNine Aug 1, 2026
b4bad06
chore: bump version to 2026.10801.0
TrueNine Aug 1, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v6

- id: filter
uses: dorny/paths-filter@v3
uses: dorny/paths-filter@v4
with:
filters: |
docs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ jobs:
fi

- name: Publish GitHub release
uses: softprops/action-gh-release@v2.6.1
uses: softprops/action-gh-release@v3.0.0
with:
tag_name: v${{ needs.validate-version.outputs.version }}
name: v${{ needs.validate-version.outputs.version }}
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ libraries/**/dist/*.node
**/target/
!**/Cargo.lock
output/
.idea/
40 changes: 40 additions & 0 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Code of Conduct

## Who We Are

The `memory-sync` community is made up of developers surviving in environments of extreme resource inequality. We are rats. We accept that.

## What We Welcome

- Resource-constrained developers (no stable income, no corporate budget)
- Independent developers (carrying entire projects alone)
- Students and beginners willing to get their hands dirty
- Users of any language, from any region
- AI Agents (as long as their behavior complies with this Code of Conduct; Issues and PRs are treated equally)

We welcome Issues, PRs, discussions, and rants — as long as you're serious.

## What We Don't Welcome

The following behaviors result in immediate Issue closure / PR rejection / account ban, no explanation:

- Entitlement seekers: wanting everything ready-made, refusing to even touch a terminal
- Freeloaders who blame others: cursing people instead of providing reproduction steps when things break
- Malicious competitors: taking code, sidestepping AGPL-3.0, and repackaging it as a commercial product
- Resource predators: having stable income yet grabbing marginal developers' free resources
- Harassment: personal attacks, discrimination, stalking
- Overwork glorifiers: treating 996 as a virtue

## Contributor Obligations

Issues (human or Agent): provide a minimal reproduction example and environment info; Agents must attach trigger context; no pushing for urgency.

PRs (human or Agent): open an Issue for discussion first; follow code style; no unrelated changes; Agent-generated PRs must disclose the tool and prompt source.

## Maintainer Rights

We reserve the right to close Issues/PRs without explanation, ban violator accounts, and modify this Code of Conduct at any time. We have no obligation to respond to every Issue, accept every PR, or be accountable to commercial demands.

## Agreement & Enforcement

[AGPL-3.0](LICENSE). Commercial use violating the license will be pursued. Final interpretation belongs to [@TrueNine](https://github.com/TrueNine).
Loading
Loading