Skip to content

Commit 5e9f2fb

Browse files
yeightaclaude
andcommitted
docs: 初回 README ドラフト(日本語 / 英語)
社外公開向け配布リポジトリの README ドラフト。Phase 1 公開準備のためのスケルトン。 - README.md / README.en.md の日英併記 - プロダクト概要・主な特長・インストール・クイックスタート・サポート・ライセンス記述を最低限カバー - 公開時に詰めるべき箇所は <!-- TODO --> でマーク - 親 Issue: acompany-develop/securecode#159 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
0 parents  commit 5e9f2fb

2 files changed

Lines changed: 174 additions & 0 deletions

File tree

README.en.md

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
> [!NOTE]
2+
> This repository is being prepared for public release. It will remain private until Phase 1 binary distribution begins.
3+
4+
# SecureCode
5+
6+
A secure coding agent from Acompany that enables AI-assisted development without exposing confidential source code.
7+
8+
[![SecureCode demo](https://img.youtube.com/vi/QCwp4IbuP2I/maxresdefault.jpg)](https://youtu.be/QCwp4IbuP2I?si=Qx4Za7sfdluWB0Ca)
9+
10+
[Product site](https://www.acompany.tech/) | [Contact](https://www.acompany.tech/contact) | [日本語](./README.md)
11+
12+
## Overview
13+
14+
SecureCode sends confidential source code to a Confidential Computing environment and runs LLM inference inside a sealed execution region. This keeps in-flight data invisible to infrastructure providers, model providers, and any other third party while still delivering AI-assisted coding.
15+
16+
It targets engineering organizations that handle proprietary code and want to add code generation, review, refactoring, bug fixing, and test generation to their existing terminal-centric workflow without disruption.
17+
18+
## Highlights
19+
20+
- **Confidential code protection**: Inference runs inside a Trusted Execution Environment, protecting source code I/O and LLM processing
21+
- **Workflow fit**: Terminal-first UX that drops directly into day-to-day development
22+
- **Audit-ready**: Records and visualizes AI usage logs so you can trace who used AI on which codebase and when
23+
- **Models**: Open-weight LLMs including GPT-OSS, Qwen3.5, and Qwen3-Coder-Next
24+
25+
## Installation
26+
27+
### macOS / Linux
28+
29+
<!-- TODO: finalize install script URL before going public -->
30+
```bash
31+
curl -fsSL https://raw.githubusercontent.com/acompany-develop/securecode-release/main/scripts/install.sh | sh
32+
```
33+
34+
After installation, the `securecode` command will be available on your PATH.
35+
36+
### Windows
37+
38+
<!-- TODO: finalize Windows distribution format before going public -->
39+
Download the latest Windows binary from [Releases](https://github.com/acompany-develop/securecode-release/releases).
40+
41+
### Requirements
42+
43+
- macOS 12+ (arm64 / x64)
44+
- Linux glibc 2.28+ or musl (arm64 / x64)
45+
- Windows 10+ (arm64 / x64)
46+
47+
## Quick Start
48+
49+
### 1. Set your API key
50+
51+
SecureCode requires an API key issued by Acompany. Please [contact us](https://www.acompany.tech/contact) to request one.
52+
53+
```bash
54+
export SECURECODE_API_KEY=<your-api-key>
55+
```
56+
57+
### 2. Launch in your project directory
58+
59+
```bash
60+
cd /path/to/your/project
61+
securecode
62+
```
63+
64+
A TUI will start an interactive coding-assistance session.
65+
66+
<!-- TODO: add screenshots before going public -->
67+
68+
## Support
69+
70+
- **Sales / general inquiries**: https://www.acompany.tech/contact
71+
- **Bug reports / feature requests**: [Issues](https://github.com/acompany-develop/securecode-release/issues) in this repository
72+
73+
## License
74+
75+
- This software is distributed as a proprietary binary. The applicable license agreement is bundled with each release archive.
76+
- Licenses of bundled third-party dependencies are listed in the `THIRD-PARTY-LICENSES.txt` shipped with each release.
77+
- SecureCode is a fork built on top of [opencode](https://github.com/sst/opencode) (MIT). Upstream copyright and license information is included in `THIRD-PARTY-LICENSES.txt`.
78+
79+
## Links
80+
81+
- Product: https://www.acompany.tech/
82+
- Press release: https://prtimes.jp/main/html/rd/p/000000128.000046917.html
83+
- Demo video: https://youtu.be/QCwp4IbuP2I
84+
85+
---
86+
87+
Copyright © 2026 Acompany Inc. All rights reserved.

README.md

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
> [!NOTE]
2+
> このリポジトリは公開準備中です。Phase 1 のバイナリ配布開始までは private のまま整備されます。
3+
4+
# SecureCode
5+
6+
機密ソースコードを漏洩させずに AI コーディング支援を実現する、Acompany のセキュアなコーディングエージェントです。
7+
8+
[![SecureCode demo](https://img.youtube.com/vi/QCwp4IbuP2I/maxresdefault.jpg)](https://youtu.be/QCwp4IbuP2I?si=Qx4Za7sfdluWB0Ca)
9+
10+
[製品サイト](https://www.acompany.tech/) | [お問い合わせ](https://www.acompany.tech/contact) | [English](./README.en.md)
11+
12+
## 概要
13+
14+
SecureCode は、機密ソースコードを Confidential Computing 環境に送信し、秘匿化された実行領域で LLM 推論を行うことで、インフラ事業者やモデル提供者を含む第三者から処理中データを見えなくしたまま AI コーディング支援を提供します。
15+
16+
企業の機密コードを扱う開発組織でも、既存のターミナル中心のワークフローを崩さずに、コード生成、レビュー、リファクタリング、バグ修正、テスト生成を進められることを狙っています。
17+
18+
## 主な特長
19+
20+
- **機密コードの保護**: Trusted Execution Environment 上で推論を実行し、ソースコードの入出力と LLM 処理を保護
21+
- **開発フローとの親和性**: ターミナル中心の操作性を維持しながら、日常的な実装作業にそのまま組み込み可能
22+
- **監査対応**: AI 利用ログを記録・可視化し、誰がいつどのコードベースで AI を使ったかを追跡
23+
- **利用モデル**: GPT-OSS、Qwen3.5、Qwen3-Coder-Next などのオープンウェイト LLM を利用可能
24+
25+
## インストール
26+
27+
### macOS / Linux
28+
29+
<!-- TODO: 公開時に install スクリプトの URL を確定 -->
30+
```bash
31+
curl -fsSL https://raw.githubusercontent.com/acompany-develop/securecode-release/main/scripts/install.sh | sh
32+
```
33+
34+
インストール後、`securecode` コマンドが PATH に通ります。
35+
36+
### Windows
37+
38+
<!-- TODO: 公開時に Windows 配布形式を確定。Releases から zip ダウンロード or scoop bucket 等 -->
39+
[Releases](https://github.com/acompany-develop/securecode-release/releases) から最新版の Windows 用バイナリをダウンロードしてください。
40+
41+
### 動作要件
42+
43+
- macOS 12+ (arm64 / x64)
44+
- Linux glibc 2.28+ または musl (arm64 / x64)
45+
- Windows 10+ (arm64 / x64)
46+
47+
## クイックスタート
48+
49+
### 1. API キーを設定
50+
51+
SecureCode の利用には Acompany が発行する API キーが必要です。[お問い合わせフォーム](https://www.acompany.tech/contact)からご連絡ください。
52+
53+
```bash
54+
export SECURECODE_API_KEY=<your-api-key>
55+
```
56+
57+
### 2. プロジェクトディレクトリで起動
58+
59+
```bash
60+
cd /path/to/your/project
61+
securecode
62+
```
63+
64+
TUI が立ち上がり、対話的なコーディング支援セッションを開始できます。
65+
66+
<!-- TODO: 公開時にスクリーンショットを追加 -->
67+
68+
## サポート
69+
70+
- **お問い合わせ・契約相談**: https://www.acompany.tech/contact
71+
- **バグ報告 / 機能要望**: 本リポジトリの [Issues](https://github.com/acompany-develop/securecode-release/issues)
72+
73+
## ライセンス
74+
75+
- 本ソフトウェアは proprietary なバイナリとして配布されます。利用規約は各リリースアーカイブに同梱されています
76+
- 同梱する third-party 依存のライセンスは各リリースに同梱される `THIRD-PARTY-LICENSES.txt` を参照してください
77+
- SecureCode は [opencode](https://github.com/sst/opencode) (MIT) を基盤とした fork です。upstream の著作権・ライセンス情報は `THIRD-PARTY-LICENSES.txt` に含まれています
78+
79+
## 関連リンク
80+
81+
- 製品サイト: https://www.acompany.tech/
82+
- プレスリリース: https://prtimes.jp/main/html/rd/p/000000128.000046917.html
83+
- デモ動画: https://youtu.be/QCwp4IbuP2I
84+
85+
---
86+
87+
Copyright © 2026 Acompany Inc. All rights reserved.

0 commit comments

Comments
 (0)