agent-bios 0.13.0 → 0.15.0
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/README.md +2 -2
- package/claude/CLAUDE.md +8 -8
- package/claude/guides/claude-prompting.md +59 -7
- package/claude/guides/cli-multi-model-workflow.md +6 -1
- package/claude/guides/coding-staged-workflow.md +12 -0
- package/claude/guides/gpt-prompting.md +60 -4
- package/claude/guides/learning-flow.md +4 -1
- package/claude/guides/llm-capability-boundary-patterns.md +8 -0
- package/claude/guides/review-request.md +13 -0
- package/claude/guides/session-distill-workflow.md +21 -9
- package/claude/guides/tooling-gotchas.md +181 -14
- package/claude/guides/verification-discipline.md +71 -3
- package/claude/hooks/tooling-gotchas-hook.py +50 -0
- package/codex/AGENTS.md +8 -8
- package/codex/guides/claude-prompting.md +59 -7
- package/codex/guides/cli-multi-model-workflow.md +6 -1
- package/codex/guides/coding-staged-workflow.md +12 -0
- package/codex/guides/gpt-prompting.md +60 -4
- package/codex/guides/learning-flow.md +4 -1
- package/codex/guides/llm-capability-boundary-patterns.md +8 -0
- package/codex/guides/review-request.md +13 -0
- package/codex/guides/session-distill-workflow.md +21 -9
- package/codex/guides/tooling-gotchas.md +181 -14
- package/codex/guides/verification-discipline.md +71 -3
- package/compose/corpus-state.py +1170 -0
- package/compose/write-update-cache.py +53 -0
- package/install.sh +198 -11
- package/launch/agent-launch.py +112 -6
- package/launch/agent-launch.zsh +109 -6
- package/launch/i18n/en.toml +1 -0
- package/launch/i18n/ja.toml +1 -0
- package/launch/i18n/ko.toml +1 -0
- package/learn/collect-learning.py +593 -62
- package/learn/redact.py +2 -1
- package/package.json +4 -2
- package/provenance.json +1 -1
package/launch/i18n/ja.toml
CHANGED
|
@@ -165,6 +165,7 @@
|
|
|
165
165
|
"panel.domains.label" = "ドメイン"
|
|
166
166
|
"panel.rolled-back" = "(ロールバック済み。最新は {latest})"
|
|
167
167
|
"panel.layers.none" = "なし"
|
|
168
|
+
"panel.unavailable" = "パッケージ導入では取得不可"
|
|
168
169
|
"panel.ledger.value" = "配置 {placed} · インキュベート {incubating} · バージョン {versions}"
|
|
169
170
|
"panel.domains.unset" = "(未選択)"
|
|
170
171
|
"panel.last-apply" = "⚠ 最終適用 {outcome} @ {at} — 要求: {requested}"
|
package/launch/i18n/ko.toml
CHANGED
|
@@ -165,6 +165,7 @@
|
|
|
165
165
|
"panel.domains.label" = "도메인"
|
|
166
166
|
"panel.rolled-back" = "(롤백됨. 최신은 {latest})"
|
|
167
167
|
"panel.layers.none" = "없음"
|
|
168
|
+
"panel.unavailable" = "패키지 설치에서는 확인 불가"
|
|
168
169
|
"panel.ledger.value" = "배치 {placed} · 인큐베이팅 {incubating} · 버전 {versions}"
|
|
169
170
|
"panel.domains.unset" = "(아직 선택 안 함)"
|
|
170
171
|
"panel.last-apply" = "⚠ 마지막 적용 {outcome} @ {at} — 요청: {requested}"
|