Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
f6214b3
config: update gitignore untuk proteksi credentials dan secrets
el-pablos Mar 21, 2026
28ddd74
update: enhance request context module with helper functions
el-pablos Mar 21, 2026
2f2e5a0
add: nambahin field reasoning_text dan reasoning_opaque ke interface …
el-pablos Mar 21, 2026
ee6fb9b
config: update package.json dengan metadata dan deskripsi lengkap
el-pablos Mar 21, 2026
18ac386
update: enhance logger dengan file-based logging dan auto cleanup
el-pablos Mar 21, 2026
9a76fb5
update: tambahin safety multiplier khusus buat claude models
el-pablos Mar 21, 2026
34c9b81
test: tambahin test case buat claude safety multiplier
el-pablos Mar 21, 2026
8a56440
docs: nambahin dokumen analisis perbandingan cina-copilot vs copilot-api
el-pablos Mar 21, 2026
9a573de
docs: nambahin mega prompt implementasi thinking mechanism
el-pablos Mar 21, 2026
022b67f
test: nambahin unit test untuk request context module
el-pablos Mar 21, 2026
e4698fc
add: nambahin path baru untuk logs, cache, dan config dir
el-pablos Mar 21, 2026
5dc5bb0
test: nambahin unit test untuk paths module
el-pablos Mar 21, 2026
1981d85
test: nambahin unit test untuk logger module
el-pablos Mar 21, 2026
b7c4dee
docs: nambahin dokumentasi caching analysis
el-pablos Mar 21, 2026
cc14412
docs: update README dengan struktur yang lebih lengkap
el-pablos Mar 21, 2026
30037bd
config: exclude test files dari typescript compilation
el-pablos Mar 21, 2026
5abb085
test: nambahin integration test buat stream translation
el-pablos Mar 21, 2026
5ede90f
config: hapus test file yang dipindah lokasi
el-pablos Mar 21, 2026
da9511d
update: refactor stream translation dengan thinking block handler
el-pablos Mar 21, 2026
3832a2e
config: format ulang logger-emitter test pake prettier
el-pablos Mar 21, 2026
756d052
test: update logger-emitter test formatting
el-pablos Mar 21, 2026
262573e
test: update logger emitter test untuk kompatibilitas dengan file-bas…
el-pablos Mar 21, 2026
55bff6b
config: exclude test files dari eslint checking
el-pablos Mar 21, 2026
56d1163
config: format integration test pake prettier
el-pablos Mar 21, 2026
2b5ccb5
test: nambahin integration test untuk stream translation
el-pablos Mar 21, 2026
72e2264
test: nambahin unit test untuk thinking mechanism di stream translation
el-pablos Mar 21, 2026
3a07296
feat: tambahin auto-inject extended thinking buat claude 4.5, context…
el-pablos Mar 23, 2026
e16750e
fix: perbaiki token tracking 0/0 di request history streaming + round…
el-pablos Mar 23, 2026
c7fae82
feat: tambahin auto-inject reasoning_effort xhigh untuk model gpt-5 y…
el-pablos Mar 23, 2026
8a8d3a6
chore: update webui dashboard, types, translation layer, version chec…
el-pablos Mar 24, 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
Binary file removed .DS_Store
Binary file not shown.
42 changes: 32 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,50 @@ name: CI

on:
push:
branches: ['*']
branches: [main, develop]
pull_request:
branches: ['*']
branches: [main, develop]

jobs:
ci:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout repository
uses: actions/checkout@v4

- uses: oven-sh/setup-bun@v2
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest

- name: Install dependencies
run: bun install --frozen-lockfile

- name: Typecheck
run: bun run typecheck

- name: Lint
- name: Run linter
run: bun run lint

- name: Test
- name: Run type check
run: bun run typecheck

- name: Run tests
run: bun test

build:
name: Build
runs-on: ubuntu-latest
needs: test
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest

- name: Install dependencies
run: bun install --frozen-lockfile

- name: Build
run: bun run build
31 changes: 31 additions & 0 deletions .github/workflows/version-bump.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Version Bump

on:
workflow_dispatch:
inputs:
version_type:
description: 'Version bump type'
required: true
default: 'patch'
type: choice
options:
- patch
- minor
- major

permissions:
contents: write

jobs:
bump:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
- run: npm version ${{ inputs.version_type }} -m "release: bump versi ke %s"
- run: git push && git push --tags
25 changes: 24 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,27 @@ pids/
.npm/
.yarn-integrity
.lock-wscript
*.tgz
*.tgz

# Environment files - JANGAN PERNAH COMMIT
*.env

# Secrets dan credentials
*.pem
*.key
*.secret
secrets/
credentials/
*.credentials

# API Keys dan Tokens
*.token
*.apikey
api-keys.json
tokens.json
github-token*
copilot-token*

# Config dengan secrets
config.local.json
config.secret.json
Loading
Loading