You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update README with PyPI install instructions (#22)
* Update README with PyPI install instructions
Replace editable install instructions with proper PyPI package installation
using pipx (recommended), uv tool install, and pip install.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
* better
---------
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
Policies automatically enforce team guidelines when files change:
287
-
223
+
### 📋 Job Definition
224
+
Define structured, multi-step workflows where each step has clear requirements and produces specific results.
225
+
-**Dependency Management**: Explicitly link steps with automatic sequence handling and cycle detection.
226
+
-**Artifact Passing**: Seamlessly use file outputs from one step as inputs for future steps.
227
+
-**Dynamic Inputs**: Support for both fixed file references and interactive user parameters.
228
+
-**Human-Readable YAML**: Simple, declarative job definitions that are easy to version and maintain.
229
+
230
+
### 🌿 Git-Native Workflow
231
+
Maintain a clean repository with automatic branch management and isolation.
232
+
-**Automatic Branching**: Every job execution happens on a dedicated work branch (e.g., `deepwork/my-job-2024`).
233
+
-**Namespace Isolation**: Run multiple concurrent jobs or instances without versioning conflicts.
234
+
-**Full Traceability**: All AI-generated changes, logs, and artifacts are tracked natively in your Git history.
235
+
236
+
### 🛡️ Automated Policies
237
+
Enforce project standards and best practices without manual oversight. Policies monitor file changes and automatically prompt your AI assistant to follow specific guidelines when relevant code is modified.
238
+
-**Automatic Triggers**: Detect when specific files or directories are changed to fire relevant policies.
239
+
-**Contextual Guidance**: Instructions are injected directly into the AI's workflow at the right moment.
240
+
-**Common Use Cases**: Keep documentation in sync, enforce security reviews, or automate changelog updates.
241
+
242
+
**Example Policy**:
288
243
```yaml
289
-
#.deepwork.policy.yml
244
+
#Enforce documentation updates when config changes
0 commit comments