File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ All notable changes to DeepWork will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and 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
4250Initial 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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"
Original file line number Diff line number Diff line change 11[project ]
22name = " deepwork"
3- version = " 0.1.1 "
3+ version = " 0.1.2 "
44description = " Framework for enabling AI agents to perform complex, multi-step work tasks"
55readme = " README.md"
66requires-python = " >=3.11"
You can’t perform that action at this time.
0 commit comments