AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Automation Config

skill-alfredxw-nova-automation-config · by alfredxw

Use when config_manager creates or updates Nova automation task JSON through automation tools.

No reviews yet
0 installs
34 views
0.0% view→install

Install

$ agentstack add skill-alfredxw-nova-automation-config

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-alfredxw-nova-automation-config)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Automation Config? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Automation Config

Use this skill before calling write_automations.

Workflow

  1. Call list_automations first. For updates, call read_automations for the target IDs before writing.
  2. Use write_automations only for module-level changes. Do not edit automations/tasks.json directly.
  3. For create, provide a complete task object with clear name, scope, template, prompt, trigger policy, write policy, and output policy.
  4. For update, preserve fields not requested by the user. Send the existing id in op.id or task.id.
  5. For delete, only send op: "delete" after the user explicitly asked to delete the task.

Task Shape

Important task fields:

  • scope: workspace for the current book, or user for reusable personal automations.
  • enabled: boolean.
  • name: user visible task name.
  • template: one of memory_consolidation, review, continue_writing, custom_prompt.
  • prompt: the task instruction that the automation agent will run.
  • model_profile_id: optional model profile ID. Leave empty to inherit automation/default settings.
  • schedule: structured schedule. Keep it consistent with schedule triggers.
  • triggers: array of trigger definitions.
  • write_mode: one of read_only, confirm_write, auto_write.
  • write_scope: one of none, lore, file, lore_and_file.
  • output_policy: one of run_record_only, optional_file.
  • output_path: required only when output_policy is optional_file.

The backend derives legacy write_policy and default_action_policy; do not rely on trigger-level action policy.

Trigger Shape

triggers contains objects with:

  • id: stable identifier. Use meaningful IDs like daily_review or chapter_batch_review.
  • type: one of manual, schedule, semantic, chapter_batch.
  • enabled: boolean.
  • name: optional user-visible label.
  • notify_policy: inbox or silent. Schedule defaults to silent; content triggers default to inbox.
  • schedule: required for schedule triggers.
  • semantic_condition: required for useful semantic triggers.
  • chapter_batch_size: positive integer for chapter_batch; default is 5.

Do not set action_policy on triggers. Effective execution behavior comes from write_mode.

Schedule Shape

schedule.kind must be one of:

  • manual
  • daily
  • weekly
  • monthly
  • every_hours

Common fields:

  • hour: 0-23.
  • minute: 0-59.
  • weekday: 0-6 for weekly schedules, where 0 is Sunday.
  • day_of_month: 1-31 for monthly schedules.
  • every_hours: 1-168 for interval schedules.

cron is generated by the backend. Leave it empty unless you are preserving an existing value.

Safe Defaults

  • Review-only tasks: write_mode: "read_only", write_scope: "none", output_policy: "run_record_only".
  • File-writing tasks: prefer write_mode: "confirm_write" unless the user explicitly asks for unattended writes.
  • Auto-write tasks must have a narrow write_scope and a prompt that names the exact file or lore boundary.
  • Use workspace scope unless the user says the automation should apply across books.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.