Skip to content

Commit 1b67a0e

Browse files
committed
Update docs and version for default policy template feature
- README: Document policy template creation during install - Architecture: Update install pseudocode to show policy template step - Version: Bump to 0.1.2 - Changelog: Add entry for default policy template feature
1 parent f1dc9e7 commit 1b67a0e

4 files changed

Lines changed: 15 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to DeepWork will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.2] - 2026-01-15
9+
10+
### Added
11+
- Default policy template file created during `deepwork install`
12+
- Generic, commented-out example policies suitable for any project
13+
- Does not include deepwork-specific policies (those remain in the deepwork repo only)
14+
- Preserves existing policy files if already present
15+
816
## [0.1.1] - 2026-01-15
917

1018
### Added
@@ -41,5 +49,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4149

4250
Initial version.
4351

52+
[0.1.2]: https://github.com/anthropics/deepwork/releases/tag/v0.1.2
4453
[0.1.1]: https://github.com/anthropics/deepwork/releases/tag/v0.1.1
4554
[0.1.0]: https://github.com/anthropics/deepwork/releases/tag/v0.1.0

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ This will:
6262
- Generate core DeepWork jobs
6363
- Install DeepWork jobs for your AI assistant
6464
- Configure hooks for your AI assistant to enable policies
65+
- Create a `.deepwork.policy.yml` template file with example policies
6566

6667
## Quick Start
6768

doc/architecture.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,10 @@ def install(platform: str):
116116
# Inject core job definitions
117117
inject_deepwork_jobs(".deepwork/jobs/")
118118

119+
# Create default policy template (if not exists)
120+
if not exists(".deepwork.policy.yml"):
121+
copy_template("default_policy.yml", ".deepwork.policy.yml")
122+
119123
# Update config (supports multiple platforms)
120124
config = load_yaml(".deepwork/config.yml") or {}
121125
config["version"] = "1.0.0"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "deepwork"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "Framework for enabling AI agents to perform complex, multi-step work tasks"
55
readme = "README.md"
66
requires-python = ">=3.11"

0 commit comments

Comments
 (0)