Install
$ agentstack add skill-zhu1090093659-deepseek-pp-skill ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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 Used
- ✓ 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →About
DeepSeek Automation
Use this project-local skill for the DeepSeek++ automation implementation. The feature goal is: create Codex-style automations that can run immediately in a new DeepSeek chat session and then continue in that same automation session on a cron/RRULE-like schedule.
Start Every Session
- Read
docs/progress/MASTER.md. - Confirm tracking mode. Current mode is
GITHUB_STANDARD. - Query GitHub before starting work:
gh issue list -R zhu1090093659/deepseek-pp --label "spec-driven" --state open --json number,title,labels,milestone
- Pick the next open issue in dependency order unless the user names a task.
- Read the selected Issue body and linked local docs under
docs/analysis/anddocs/plan/. - Update
docs/progress/MASTER.mdCurrent Status at session start and end.
Architecture Rules
- Keep scheduling in background code.
- Keep actual DeepSeek request execution in the DeepSeek page main-world context.
- Use content script only as a narrow bridge between background and main world.
- Do not add automation business logic directly into
fetch-hook.tsunless the task is explicitly about hook compatibility. - Prefer new focused files under
core/automation/. - Do not rely on background-only
fetch('/api/v0/chat/completion')for MVP; DeepSeek web completion has challenge/proof-of-work behavior. - Preserve existing memory, skill, preset, and tool-call behavior unless the Issue explicitly changes it.
DeepSeek Web Facts
Verified on 2026-05-21:
- Completion endpoint:
/api/v0/chat/completion. - History endpoint:
/api/v0/chat/history_messages. - Completion request fields include
chat_session_id,parent_message_id,model_type,prompt,ref_file_ids,thinking_enabled,search_enabled,action, andpreempt. - New session and same-session continuation work from the web UI.
- Reload restores the automation test session from history.
- Persist the latest valid parent message id after every run and reconcile it against history.
S.U.P.E.R Principles
S - Single Purpose
From Unix philosophy.
- Each module, file, and function solves exactly one problem
- Prefer decomposition; power comes from composition
- One skill does one thing, one worker does one thing, one script does one thing
Litmus test: if you cannot describe a module's responsibility in a single sentence, it needs to be split.
Anti-pattern: a script that fetches data, computes metrics, renders charts, and sends notifications.
Correct approach:
fetch_data.py -> data retrieval only, outputs JSON
compute.py -> computation only, reads JSON writes JSON
render.py -> rendering only, reads JSON generates HTML
notify.py -> notification only, reads JSON calls webhook
U - Unidirectional Flow
From Clean Architecture.
- Data always flows in one direction: input -> processing -> output
- Dependencies always point inward: outer layers depend on inner layers, inner layers know nothing about outer layers
- No reverse dependencies, no circular calls
Layered model:
+-------------------------------+
| Infrastructure (API, DB, UI) | .env file > config.json > in-code defaults
Checklist:
- All API keys and webhook URLs read from environment variables?
- All dependencies explicitly declared in a dependency file?
- No hardcoded file path assumptions?
- Can a different machine run this code with zero modifications?
R - Replaceable Parts
The natural consequence and ultimate goal of S + U + P + E.
- Any layer can be replaced without affecting others
- Replacement cost is the core metric of architecture quality
- If replacing one component triggers cascading changes in unrelated modules, the architecture is broken
Replacement matrix:
| Replacing | Impact scope | Correct approach | |:--|:--|:--| | Data source API | Adapter layer only | Write new fetcher, output same JSON | | Frontend renderer | Render layer only | Read same JSON, swap render implementation | | Notification channel | Notification layer | Swap webhook adapter | | Deployment platform | Deploy config only | Change wrangler.toml or Dockerfile | | Programming language | Implementation only | JSON contracts unchanged, rewrite in any language |
S.U.P.E.R Code Review Checklist
Run this before marking any task done.
- The touched files each have one clear responsibility.
- New automation logic is not dumped into
fetch-hook.ts,content.ts, orbackground.tswhen a focused module would do. - Data flows sidepanel/alarm -> background -> content -> main-world -> result without circular imports.
- Cross-boundary messages have explicit TypeScript contracts.
- Persisted objects are serializable and migration-friendly.
- DeepSeek-specific behavior is isolated behind runner/history helpers.
- Chrome-specific behavior is isolated behind background/tab orchestration helpers.
- Errors are structured enough for run history and UI display.
- The implementation can be tested or type-checked without a live DeepSeek page where possible.
npm run compilepasses, or the blocking reason is recorded.
Scoring rule: all pass = proceed; 1-2 fail = fix first; 3+ fail = stop and refactor.
Phase Guidance
- Phase 1: implement contracts, store, and schedule calculation first.
- Phase 2: add scheduler and bridge; keep the main-world runner isolated.
- Phase 3: add Automation UI after store contracts are stable.
- Phase 4: add tab/login failure handling, timeouts, retry/missed-run policy, and prompt injection compatibility.
- Phase 5: verify live DeepSeek behavior and document limitations.
Progress and Telemetry
For every completed Issue:
- Comment on the GitHub Issue with actual effort, S.U.P.E.R score, unplanned dependency count, files changed, and verification.
- Update
docs/progress/MASTER.mdCurrent Status and phase counts if needed. - If a drift threshold in the milestone description is reached, stop and replan before continuing.
Archive Trigger
When all GitHub Issues are closed and all milestones are complete, enter archive mode:
- Move
docs/analysis/,docs/plan/, anddocs/progress/intodocs/archives/deepseek-automation/. - Move this skill to
docs/archives/deepseek-automation/skill/SKILL.md. - Update
docs/archives/README.md. - Close milestones if they are still open.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: zhu1090093659
- Source: zhu1090093659/deepseek-pp
- License: Apache-2.0
- Homepage: https://chromewebstore.google.com/detail/deepseek++/kdmpkkahkhdmdhfkdihkopikgcocbpbf?hl=zh-CN&authuser=0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.