flonat-research 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/agents/domain-reviewer.md +336 -0
- package/.claude/agents/fixer.md +226 -0
- package/.claude/agents/paper-critic.md +370 -0
- package/.claude/agents/peer-reviewer.md +289 -0
- package/.claude/agents/proposal-reviewer.md +215 -0
- package/.claude/agents/referee2-reviewer.md +367 -0
- package/.claude/agents/references/journal-referee-profiles.md +354 -0
- package/.claude/agents/references/paper-critic/council-personas.md +77 -0
- package/.claude/agents/references/paper-critic/council-prompts.md +198 -0
- package/.claude/agents/references/peer-reviewer/report-template.md +199 -0
- package/.claude/agents/references/peer-reviewer/sa-prompts.md +260 -0
- package/.claude/agents/references/peer-reviewer/security-scan.md +188 -0
- package/.claude/agents/references/proposal-reviewer/report-template.md +144 -0
- package/.claude/agents/references/proposal-reviewer/sa-prompts.md +149 -0
- package/.claude/agents/references/referee-config.md +114 -0
- package/.claude/agents/references/referee2-reviewer/audit-checklists.md +287 -0
- package/.claude/agents/references/referee2-reviewer/report-template.md +334 -0
- package/.claude/rules/design-before-results.md +52 -0
- package/.claude/rules/ignore-agents-md.md +17 -0
- package/.claude/rules/ignore-gemini-md.md +17 -0
- package/.claude/rules/lean-claude-md.md +45 -0
- package/.claude/rules/learn-tags.md +99 -0
- package/.claude/rules/overleaf-separation.md +67 -0
- package/.claude/rules/plan-first.md +175 -0
- package/.claude/rules/read-docs-first.md +50 -0
- package/.claude/rules/scope-discipline.md +28 -0
- package/.claude/settings.json +125 -0
- package/.context/current-focus.md +33 -0
- package/.context/preferences/priorities.md +36 -0
- package/.context/preferences/task-naming.md +28 -0
- package/.context/profile.md +29 -0
- package/.context/projects/_index.md +41 -0
- package/.context/projects/papers/nudge-exp.md +22 -0
- package/.context/projects/papers/uncertainty.md +31 -0
- package/.context/resources/claude-scientific-writer-review.md +48 -0
- package/.context/resources/cunningham-multi-analyst-agents.md +104 -0
- package/.context/resources/cunningham-multilang-code-audit.md +62 -0
- package/.context/resources/google-ai-co-scientist-review.md +72 -0
- package/.context/resources/karpathy-llm-council-review.md +58 -0
- package/.context/resources/multi-coder-reliability-protocol.md +175 -0
- package/.context/resources/pedro-santanna-takeaways.md +96 -0
- package/.context/resources/venue-rankings/abs_ajg_2024.csv +1823 -0
- package/.context/resources/venue-rankings/abs_ajg_2024_econ.csv +356 -0
- package/.context/resources/venue-rankings/cabs_4_4star_theory.csv +40 -0
- package/.context/resources/venue-rankings/core_2026.csv +801 -0
- package/.context/resources/venue-rankings.md +147 -0
- package/.context/workflows/README.md +69 -0
- package/.context/workflows/daily-review.md +91 -0
- package/.context/workflows/meeting-actions.md +108 -0
- package/.context/workflows/replication-protocol.md +155 -0
- package/.context/workflows/weekly-review.md +113 -0
- package/.mcp-server-biblio/formatters.py +158 -0
- package/.mcp-server-biblio/pyproject.toml +11 -0
- package/.mcp-server-biblio/server.py +678 -0
- package/.mcp-server-biblio/sources/__init__.py +14 -0
- package/.mcp-server-biblio/sources/base.py +73 -0
- package/.mcp-server-biblio/sources/formatters.py +83 -0
- package/.mcp-server-biblio/sources/models.py +22 -0
- package/.mcp-server-biblio/sources/multi_source.py +243 -0
- package/.mcp-server-biblio/sources/openalex_source.py +183 -0
- package/.mcp-server-biblio/sources/scopus_source.py +309 -0
- package/.mcp-server-biblio/sources/wos_source.py +508 -0
- package/.mcp-server-biblio/uv.lock +896 -0
- package/.scripts/README.md +161 -0
- package/.scripts/ai_pattern_density.py +446 -0
- package/.scripts/conf +445 -0
- package/.scripts/config.py +122 -0
- package/.scripts/count_inventory.py +275 -0
- package/.scripts/daily_digest.py +288 -0
- package/.scripts/done +177 -0
- package/.scripts/extract_meeting_actions.py +223 -0
- package/.scripts/focus +176 -0
- package/.scripts/generate-codex-agents-md.py +217 -0
- package/.scripts/inbox +194 -0
- package/.scripts/notion_helpers.py +325 -0
- package/.scripts/openalex/query_helpers.py +306 -0
- package/.scripts/papers +227 -0
- package/.scripts/query +223 -0
- package/.scripts/session-history.py +201 -0
- package/.scripts/skill-health.py +516 -0
- package/.scripts/skill-log-miner.py +273 -0
- package/.scripts/sync-to-codex.sh +252 -0
- package/.scripts/task +213 -0
- package/.scripts/tasks +190 -0
- package/.scripts/week +206 -0
- package/CLAUDE.md +197 -0
- package/LICENSE +21 -0
- package/MEMORY.md +38 -0
- package/README.md +269 -0
- package/docs/agents.md +44 -0
- package/docs/bibliography-setup.md +55 -0
- package/docs/council-mode.md +36 -0
- package/docs/getting-started.md +245 -0
- package/docs/hooks.md +38 -0
- package/docs/mcp-servers.md +82 -0
- package/docs/notion-setup.md +109 -0
- package/docs/rules.md +33 -0
- package/docs/scripts.md +303 -0
- package/docs/setup-overview/setup-overview.pdf +0 -0
- package/docs/skills.md +70 -0
- package/docs/system.md +159 -0
- package/hooks/block-destructive-git.sh +66 -0
- package/hooks/context-monitor.py +114 -0
- package/hooks/postcompact-restore.py +157 -0
- package/hooks/precompact-autosave.py +181 -0
- package/hooks/promise-checker.sh +124 -0
- package/hooks/protect-source-files.sh +81 -0
- package/hooks/resume-context-loader.sh +53 -0
- package/hooks/startup-context-loader.sh +102 -0
- package/package.json +51 -0
- package/packages/cli-council/.github/workflows/claude-code-review.yml +44 -0
- package/packages/cli-council/.github/workflows/claude.yml +50 -0
- package/packages/cli-council/README.md +100 -0
- package/packages/cli-council/pyproject.toml +43 -0
- package/packages/cli-council/src/cli_council/__init__.py +19 -0
- package/packages/cli-council/src/cli_council/__main__.py +185 -0
- package/packages/cli-council/src/cli_council/backends/__init__.py +8 -0
- package/packages/cli-council/src/cli_council/backends/base.py +81 -0
- package/packages/cli-council/src/cli_council/backends/claude.py +25 -0
- package/packages/cli-council/src/cli_council/backends/codex.py +27 -0
- package/packages/cli-council/src/cli_council/backends/gemini.py +26 -0
- package/packages/cli-council/src/cli_council/checkpoint.py +212 -0
- package/packages/cli-council/src/cli_council/config.py +51 -0
- package/packages/cli-council/src/cli_council/council.py +391 -0
- package/packages/cli-council/src/cli_council/models.py +46 -0
- package/packages/llm-council/.github/workflows/claude-code-review.yml +44 -0
- package/packages/llm-council/.github/workflows/claude.yml +50 -0
- package/packages/llm-council/README.md +453 -0
- package/packages/llm-council/pyproject.toml +42 -0
- package/packages/llm-council/src/llm_council/__init__.py +23 -0
- package/packages/llm-council/src/llm_council/__main__.py +259 -0
- package/packages/llm-council/src/llm_council/checkpoint.py +193 -0
- package/packages/llm-council/src/llm_council/client.py +253 -0
- package/packages/llm-council/src/llm_council/config.py +232 -0
- package/packages/llm-council/src/llm_council/council.py +482 -0
- package/packages/llm-council/src/llm_council/models.py +46 -0
- package/packages/mcp-bibliography/MEMORY.md +31 -0
- package/packages/mcp-bibliography/_app.py +226 -0
- package/packages/mcp-bibliography/formatters.py +158 -0
- package/packages/mcp-bibliography/log/2026-03-13-2100.md +35 -0
- package/packages/mcp-bibliography/pyproject.toml +15 -0
- package/packages/mcp-bibliography/run.sh +20 -0
- package/packages/mcp-bibliography/scholarly_formatters.py +83 -0
- package/packages/mcp-bibliography/server.py +1857 -0
- package/packages/mcp-bibliography/tools/__init__.py +28 -0
- package/packages/mcp-bibliography/tools/_registry.py +19 -0
- package/packages/mcp-bibliography/tools/altmetric.py +107 -0
- package/packages/mcp-bibliography/tools/core.py +92 -0
- package/packages/mcp-bibliography/tools/dblp.py +52 -0
- package/packages/mcp-bibliography/tools/openalex.py +296 -0
- package/packages/mcp-bibliography/tools/opencitations.py +102 -0
- package/packages/mcp-bibliography/tools/openreview.py +179 -0
- package/packages/mcp-bibliography/tools/orcid.py +131 -0
- package/packages/mcp-bibliography/tools/scholarly.py +575 -0
- package/packages/mcp-bibliography/tools/unpaywall.py +63 -0
- package/packages/mcp-bibliography/tools/zenodo.py +123 -0
- package/packages/mcp-bibliography/uv.lock +711 -0
- package/scripts/setup.sh +143 -0
- package/skills/beamer-deck/SKILL.md +199 -0
- package/skills/beamer-deck/references/quality-rubric.md +54 -0
- package/skills/beamer-deck/references/review-prompts.md +106 -0
- package/skills/bib-validate/SKILL.md +261 -0
- package/skills/bib-validate/references/council-mode.md +34 -0
- package/skills/bib-validate/references/deep-verify.md +79 -0
- package/skills/bib-validate/references/fix-mode.md +36 -0
- package/skills/bib-validate/references/openalex-verification.md +45 -0
- package/skills/bib-validate/references/preprint-check.md +31 -0
- package/skills/bib-validate/references/ref-manager-crossref.md +41 -0
- package/skills/bib-validate/references/report-template.md +82 -0
- package/skills/code-archaeology/SKILL.md +141 -0
- package/skills/code-review/SKILL.md +265 -0
- package/skills/code-review/references/quality-rubric.md +67 -0
- package/skills/consolidate-memory/SKILL.md +208 -0
- package/skills/context-status/SKILL.md +126 -0
- package/skills/creation-guard/SKILL.md +230 -0
- package/skills/devils-advocate/SKILL.md +130 -0
- package/skills/devils-advocate/references/competing-hypotheses.md +83 -0
- package/skills/init-project/SKILL.md +115 -0
- package/skills/init-project-course/references/memory-and-settings.md +92 -0
- package/skills/init-project-course/references/organise-templates.md +94 -0
- package/skills/init-project-course/skill.md +147 -0
- package/skills/init-project-light/skill.md +139 -0
- package/skills/init-project-research/SKILL.md +368 -0
- package/skills/init-project-research/references/atlas-pipeline-sync.md +70 -0
- package/skills/init-project-research/references/atlas-schema.md +81 -0
- package/skills/init-project-research/references/confirmation-report.md +39 -0
- package/skills/init-project-research/references/domain-profile-template.md +104 -0
- package/skills/init-project-research/references/interview-round3.md +34 -0
- package/skills/init-project-research/references/literature-discovery.md +43 -0
- package/skills/init-project-research/references/scaffold-details.md +197 -0
- package/skills/init-project-research/templates/field-calibration.md +60 -0
- package/skills/init-project-research/templates/pipeline-manifest.md +63 -0
- package/skills/init-project-research/templates/run-all.sh +116 -0
- package/skills/init-project-research/templates/seed-files.md +337 -0
- package/skills/insights-deck/SKILL.md +151 -0
- package/skills/interview-me/SKILL.md +157 -0
- package/skills/latex/SKILL.md +141 -0
- package/skills/latex/references/latex-configs.md +183 -0
- package/skills/latex-autofix/SKILL.md +230 -0
- package/skills/latex-autofix/references/known-errors.md +183 -0
- package/skills/latex-autofix/references/quality-rubric.md +50 -0
- package/skills/latex-health-check/SKILL.md +161 -0
- package/skills/learn/SKILL.md +220 -0
- package/skills/learn/scripts/validate_skill.py +265 -0
- package/skills/lessons-learned/SKILL.md +201 -0
- package/skills/literature/SKILL.md +335 -0
- package/skills/literature/references/agent-templates.md +393 -0
- package/skills/literature/references/bibliometric-apis.md +44 -0
- package/skills/literature/references/cli-council-search.md +79 -0
- package/skills/literature/references/openalex-api-guide.md +371 -0
- package/skills/literature/references/openalex-common-queries.md +381 -0
- package/skills/literature/references/openalex-workflows.md +248 -0
- package/skills/literature/references/reference-manager-sync.md +36 -0
- package/skills/literature/references/scopus-api-guide.md +208 -0
- package/skills/literature/references/wos-api-guide.md +308 -0
- package/skills/multi-perspective/SKILL.md +311 -0
- package/skills/multi-perspective/references/computational-many-analysts.md +77 -0
- package/skills/pipeline-manifest/SKILL.md +226 -0
- package/skills/pre-submission-report/SKILL.md +153 -0
- package/skills/process-reviews/SKILL.md +244 -0
- package/skills/process-reviews/references/rr-routing.md +101 -0
- package/skills/project-deck/SKILL.md +87 -0
- package/skills/project-safety/SKILL.md +135 -0
- package/skills/proofread/SKILL.md +254 -0
- package/skills/proofread/references/quality-rubric.md +104 -0
- package/skills/python-env/SKILL.md +57 -0
- package/skills/quarto-deck/SKILL.md +226 -0
- package/skills/quarto-deck/references/markdown-format.md +143 -0
- package/skills/quarto-deck/references/quality-rubric.md +54 -0
- package/skills/save-context/SKILL.md +174 -0
- package/skills/session-log/SKILL.md +98 -0
- package/skills/shared/concept-validation-gate.md +161 -0
- package/skills/shared/council-protocol.md +265 -0
- package/skills/shared/distribution-diagnostics.md +164 -0
- package/skills/shared/engagement-stratified-sampling.md +218 -0
- package/skills/shared/escalation-protocol.md +74 -0
- package/skills/shared/external-audit-protocol.md +205 -0
- package/skills/shared/intercoder-reliability.md +256 -0
- package/skills/shared/mcp-degradation.md +81 -0
- package/skills/shared/method-probing-questions.md +163 -0
- package/skills/shared/multi-language-conventions.md +143 -0
- package/skills/shared/paid-api-safety.md +174 -0
- package/skills/shared/palettes.md +90 -0
- package/skills/shared/progressive-disclosure.md +92 -0
- package/skills/shared/project-documentation-content.md +443 -0
- package/skills/shared/project-documentation-format.md +281 -0
- package/skills/shared/project-documentation.md +100 -0
- package/skills/shared/publication-output.md +138 -0
- package/skills/shared/quality-scoring.md +70 -0
- package/skills/shared/reference-resolution.md +77 -0
- package/skills/shared/research-quality-rubric.md +165 -0
- package/skills/shared/rhetoric-principles.md +54 -0
- package/skills/shared/skill-design-patterns.md +272 -0
- package/skills/shared/skill-index.md +240 -0
- package/skills/shared/system-documentation.md +334 -0
- package/skills/shared/tikz-rules.md +402 -0
- package/skills/shared/validation-tiers.md +121 -0
- package/skills/shared/venue-guides/README.md +46 -0
- package/skills/shared/venue-guides/cell_press_style.md +483 -0
- package/skills/shared/venue-guides/conferences_formatting.md +564 -0
- package/skills/shared/venue-guides/cs_conference_style.md +463 -0
- package/skills/shared/venue-guides/examples/cell_summary_example.md +247 -0
- package/skills/shared/venue-guides/examples/medical_structured_abstract.md +313 -0
- package/skills/shared/venue-guides/examples/nature_abstract_examples.md +213 -0
- package/skills/shared/venue-guides/examples/neurips_introduction_example.md +245 -0
- package/skills/shared/venue-guides/journals_formatting.md +486 -0
- package/skills/shared/venue-guides/medical_journal_styles.md +535 -0
- package/skills/shared/venue-guides/ml_conference_style.md +556 -0
- package/skills/shared/venue-guides/nature_science_style.md +405 -0
- package/skills/shared/venue-guides/reviewer_expectations.md +417 -0
- package/skills/shared/venue-guides/venue_writing_styles.md +321 -0
- package/skills/split-pdf/SKILL.md +172 -0
- package/skills/split-pdf/methodology.md +48 -0
- package/skills/sync-notion/SKILL.md +93 -0
- package/skills/system-audit/SKILL.md +157 -0
- package/skills/system-audit/references/sub-agent-prompts.md +294 -0
- package/skills/task-management/SKILL.md +131 -0
- package/skills/update-focus/SKILL.md +204 -0
- package/skills/update-project-doc/SKILL.md +194 -0
- package/skills/validate-bib/SKILL.md +242 -0
- package/skills/validate-bib/references/council-mode.md +34 -0
- package/skills/validate-bib/references/deep-verify.md +71 -0
- package/skills/validate-bib/references/openalex-verification.md +45 -0
- package/skills/validate-bib/references/preprint-check.md +31 -0
- package/skills/validate-bib/references/report-template.md +62 -0
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
# Venue Rankings Reference
|
|
2
|
+
|
|
3
|
+
> Global reference for targeting publications — journals and conferences.
|
|
4
|
+
> Journals: aim for **CABS AJG 4 or 4***. Conferences: aim for **CORE A* or A**.
|
|
5
|
+
|
|
6
|
+
## Ranking Systems
|
|
7
|
+
|
|
8
|
+
| System | Venue type | Source | Scale | Notes |
|
|
9
|
+
|--------|-----------|--------|-------|-------|
|
|
10
|
+
| **CABS AJG** | Journals | Chartered Association of Business Schools | 1–4* | Most comprehensive UK business journal list |
|
|
11
|
+
| **SJR** | Journals | Scimago / Elsevier | Score + Q1–Q4 | Broad coverage across all disciplines |
|
|
12
|
+
| **FT 50** | Journals | Financial Times | Named list | 50 journals; global MBA ranking input |
|
|
13
|
+
| **CORE** | Conferences | Computing Research and Education (Australasia) | A*, A, B, C | Most widely used for CS/IS conferences |
|
|
14
|
+
|
|
15
|
+
## Data Files
|
|
16
|
+
|
|
17
|
+
Static CSV data for programmatic lookups:
|
|
18
|
+
|
|
19
|
+
| File | Contents | Records |
|
|
20
|
+
|------|----------|---------|
|
|
21
|
+
| `.context/resources/venue-rankings/abs_ajg_2024.csv` | CABS AJG 2024 journal rankings | 1,822 journals |
|
|
22
|
+
| `.context/resources/venue-rankings/core_2026.csv` | CORE ICORE 2026 conference rankings (A*–C) | ~800 conferences |
|
|
23
|
+
| `.context/resources/venue-rankings/CABS-AJG-2024.xlsx` | Original CABS spreadsheet (reference only) | — |
|
|
24
|
+
|
|
25
|
+
**SJR has no static file** — use the Elsevier Serial Title API for live lookups (requires `SCOPUS_API_KEY`).
|
|
26
|
+
|
|
27
|
+
### SJR Live Lookup
|
|
28
|
+
|
|
29
|
+
Query the Elsevier Serial Title API to get SJR score and CiteScore quartile for any journal:
|
|
30
|
+
|
|
31
|
+
```python
|
|
32
|
+
import httpx, json
|
|
33
|
+
|
|
34
|
+
async def lookup_sjr(title: str, api_key: str) -> dict | None:
|
|
35
|
+
"""Returns {"sjr": float, "quartile": "Q1"|"Q2"|"Q3"|"Q4"} or None."""
|
|
36
|
+
r = await httpx.AsyncClient(headers={
|
|
37
|
+
"X-ELS-APIKey": api_key, "Accept": "application/json",
|
|
38
|
+
}).get("https://api.elsevier.com/content/serial/title",
|
|
39
|
+
params={"title": title, "view": "CITESCORE"})
|
|
40
|
+
if r.status_code != 200:
|
|
41
|
+
return None
|
|
42
|
+
entries = r.json().get("serial-metadata-response", {}).get("entry", [])
|
|
43
|
+
# Match exact title (Elsevier does substring search)
|
|
44
|
+
norm = lambda s: s.lower().strip().replace(".", "").replace(",", "").replace(":", "").replace("&", "and")
|
|
45
|
+
entry = next((e for e in entries if norm(e.get("dc:title", "")) == norm(title)), None)
|
|
46
|
+
if not entry:
|
|
47
|
+
return None
|
|
48
|
+
sjr_list = entry.get("SJRList", {}).get("SJR", [])
|
|
49
|
+
return {"sjr": float(sjr_list[0]["$"]), "quartile": "..."} if sjr_list else None
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
The Scout app (`research/scout/src/scout/services/rankings.py`) has a full implementation with quartile extraction.
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
56
|
+
## CORE Conference Tiers
|
|
57
|
+
|
|
58
|
+
| Tier | CORE | Meaning |
|
|
59
|
+
|------|------|---------|
|
|
60
|
+
| Tier 1 | A* | Flagship venue — top of field, highly selective (<20% acceptance) |
|
|
61
|
+
| Tier 2 | A | Excellent venue — strong reputation, competitive (<25% acceptance) |
|
|
62
|
+
| Tier 3 | B | Good venue — solid but less competitive |
|
|
63
|
+
| Tier 4 | C | Acceptable venue — regional or niche |
|
|
64
|
+
|
|
65
|
+
CORE Portal: https://portal.core.edu.au/conf-ranks/
|
|
66
|
+
|
|
67
|
+
---
|
|
68
|
+
|
|
69
|
+
## FT 50 List
|
|
70
|
+
|
|
71
|
+
> Source: Financial Times (https://www.ft.com/content/3405a512-5cbb-11e1-8f1f-00144feabdc0)
|
|
72
|
+
> Journals marked * were added in recent revisions.
|
|
73
|
+
|
|
74
|
+
1. Academy of Management Journal
|
|
75
|
+
2. Academy of Management Review
|
|
76
|
+
3. Accounting, Organizations and Society
|
|
77
|
+
4. Administrative Science Quarterly
|
|
78
|
+
5. American Economic Review
|
|
79
|
+
6. Contemporary Accounting Research
|
|
80
|
+
7. Econometrica
|
|
81
|
+
8. Entrepreneurship Theory and Practice
|
|
82
|
+
9. Harvard Business Review
|
|
83
|
+
10. Human Relations*
|
|
84
|
+
11. Human Resource Management
|
|
85
|
+
12. Information Systems Research
|
|
86
|
+
13. Journal of Accounting and Economics
|
|
87
|
+
14. Journal of Accounting Research
|
|
88
|
+
15. Journal of Applied Psychology
|
|
89
|
+
16. Journal of Business Ethics
|
|
90
|
+
17. Journal of Business Venturing
|
|
91
|
+
18. Journal of Consumer Psychology
|
|
92
|
+
19. Journal of Consumer Research
|
|
93
|
+
20. Journal of Finance
|
|
94
|
+
21. Journal of Financial and Quantitative Analysis
|
|
95
|
+
22. Journal of Financial Economics
|
|
96
|
+
23. Journal of International Business Studies
|
|
97
|
+
24. Journal of Management*
|
|
98
|
+
25. Journal of Management Information Systems*
|
|
99
|
+
26. Journal of Management Studies
|
|
100
|
+
27. Journal of Marketing
|
|
101
|
+
28. Journal of Marketing Research
|
|
102
|
+
29. Journal of Operations Management
|
|
103
|
+
30. Journal of Political Economy
|
|
104
|
+
31. Journal of the Academy of Marketing Science*
|
|
105
|
+
32. Management Science
|
|
106
|
+
33. Manufacturing and Service Operations Management*
|
|
107
|
+
34. Marketing Science
|
|
108
|
+
35. MIS Quarterly
|
|
109
|
+
36. Operations Research
|
|
110
|
+
37. Organization Science
|
|
111
|
+
38. Organization Studies
|
|
112
|
+
39. Organizational Behavior and Human Decision Processes
|
|
113
|
+
40. Production and Operations Management
|
|
114
|
+
41. Quarterly Journal of Economics
|
|
115
|
+
42. Research Policy*
|
|
116
|
+
43. Review of Accounting Studies
|
|
117
|
+
44. Review of Economic Studies*
|
|
118
|
+
45. Review of Finance*
|
|
119
|
+
46. Review of Financial Studies
|
|
120
|
+
47. Sloan Management Review
|
|
121
|
+
48. Strategic Entrepreneurship Journal*
|
|
122
|
+
49. Strategic Management Journal
|
|
123
|
+
50. The Accounting Review
|
|
124
|
+
|
|
125
|
+
---
|
|
126
|
+
|
|
127
|
+
---
|
|
128
|
+
|
|
129
|
+
## Conference Metadata Template
|
|
130
|
+
|
|
131
|
+
When targeting a conference in `/init-project-research`, capture:
|
|
132
|
+
|
|
133
|
+
```markdown
|
|
134
|
+
## Conference Target
|
|
135
|
+
- **Conference:** <full name> (<acronym>)
|
|
136
|
+
- **CORE ranking:** <A*/A/B/C>
|
|
137
|
+
- **Submission deadline:** <date>
|
|
138
|
+
- **Notification date:** <date>
|
|
139
|
+
- **Camera-ready date:** <date>
|
|
140
|
+
- **Conference dates:** <dates>
|
|
141
|
+
- **Location:** <city, country>
|
|
142
|
+
- **Page limit:** <N pages + refs>
|
|
143
|
+
- **Format:** <LaTeX template / style file>
|
|
144
|
+
- **Review type:** <double-blind / single-blind / open>
|
|
145
|
+
- **Anonymisation required:** <yes/no>
|
|
146
|
+
- **CfP link:** <URL>
|
|
147
|
+
```
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
# Workflows Guide
|
|
2
|
+
|
|
3
|
+
> How to use the workflow files in this folder.
|
|
4
|
+
|
|
5
|
+
## What Are Workflows?
|
|
6
|
+
|
|
7
|
+
Workflows are step-by-step process guides for recurring tasks. They tell Claude how to help you with specific activities.
|
|
8
|
+
|
|
9
|
+
**Note:** Some capabilities are now in `skills/` instead — skills are more comprehensive and include prompt templates, while workflows are simpler process guides.
|
|
10
|
+
|
|
11
|
+
## Available Workflows
|
|
12
|
+
|
|
13
|
+
| Workflow | When to Use | Trigger Phrase |
|
|
14
|
+
|----------|-------------|----------------|
|
|
15
|
+
| `daily-review.md` | Start of workday | "Plan my day" |
|
|
16
|
+
| `weekly-review.md` | End of week | "Weekly review" |
|
|
17
|
+
| `meeting-actions.md` | After meetings | "Extract actions from my meeting with [name]" |
|
|
18
|
+
| `replication-protocol.md` | Replicating a paper's results | "Help me replicate [paper]" |
|
|
19
|
+
|
|
20
|
+
## Related Skills
|
|
21
|
+
|
|
22
|
+
These capabilities are in `skills/` folder (more comprehensive):
|
|
23
|
+
|
|
24
|
+
| Skill | When to Use | Trigger Phrase |
|
|
25
|
+
|-------|-------------|----------------|
|
|
26
|
+
| `project-safety/` | Starting research projects | "Set up a new project safely" |
|
|
27
|
+
| `code-archaeology/` | Revisiting old code | "Audit this codebase" |
|
|
28
|
+
| `literature/` | Literature search & synthesis | "Build a literature review on [topic]" |
|
|
29
|
+
|
|
30
|
+
## How to Use
|
|
31
|
+
|
|
32
|
+
### Natural Language (Recommended)
|
|
33
|
+
Just ask naturally:
|
|
34
|
+
|
|
35
|
+
> "Help me plan my day"
|
|
36
|
+
> "Extract action items from yesterday's meeting with [Supervisor]"
|
|
37
|
+
|
|
38
|
+
### Direct Reference
|
|
39
|
+
Point to the specific workflow:
|
|
40
|
+
|
|
41
|
+
> "Read `.context/workflows/daily-review.md` and help me plan"
|
|
42
|
+
|
|
43
|
+
## Workflow Summaries
|
|
44
|
+
|
|
45
|
+
### Daily Review
|
|
46
|
+
**Purpose:** Plan your day with questions, not task dumps
|
|
47
|
+
**Process:** Energy check → Surface data → Prioritise → Create plan
|
|
48
|
+
**Output:** Must Do / Should Do / Could Do list
|
|
49
|
+
|
|
50
|
+
### Weekly Review
|
|
51
|
+
**Purpose:** Reflect on the week and plan the next
|
|
52
|
+
**Process:** Clear decks → Review completed → Plan Big 3 → Check projects
|
|
53
|
+
**Output:** Week summary + next week priorities
|
|
54
|
+
|
|
55
|
+
### Meeting Actions
|
|
56
|
+
**Purpose:** Extract tasks from meeting transcripts/notes
|
|
57
|
+
**Process:** Find transcript → Identify action items → Create vault tasks
|
|
58
|
+
**Output:** Tasks in vault with proper attribution
|
|
59
|
+
|
|
60
|
+
### Replication Protocol
|
|
61
|
+
**Purpose:** Replicate results from a published paper before extending
|
|
62
|
+
**Process:** Inventory targets → Line-by-line translation → Programmatic comparison → Extend
|
|
63
|
+
**Output:** `replication-targets.md` + `replication-report.md` in project directory
|
|
64
|
+
|
|
65
|
+
## Tips
|
|
66
|
+
|
|
67
|
+
- **Workflows = processes** — Step-by-step guides for recurring tasks
|
|
68
|
+
- **Skills = capabilities** — Comprehensive instructions with templates
|
|
69
|
+
- **Combine as needed** — E.g., use code-archaeology skill with project-safety skill
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
# Daily Review Workflow
|
|
2
|
+
|
|
3
|
+
> How AI should help the user plan their day.
|
|
4
|
+
|
|
5
|
+
## Approach: Questions First, Then Plan
|
|
6
|
+
|
|
7
|
+
Don't just generate a task list. Instead, follow this process:
|
|
8
|
+
|
|
9
|
+
### Step 1: Orientation Questions
|
|
10
|
+
|
|
11
|
+
Ask the user these questions (adapt based on context):
|
|
12
|
+
|
|
13
|
+
1. **Energy check:** "How are you feeling today - high energy for deep work, or better suited for lighter tasks?"
|
|
14
|
+
|
|
15
|
+
2. **Constraints:** "Any meetings or hard commitments today that I should plan around?"
|
|
16
|
+
|
|
17
|
+
3. **Continuity:** "What were you working on yesterday? Want to continue, or switch focus?"
|
|
18
|
+
|
|
19
|
+
4. **Pressure points:** "Anything weighing on your mind or feeling overdue?"
|
|
20
|
+
|
|
21
|
+
### Step 2: Surface Relevant Information
|
|
22
|
+
|
|
23
|
+
After understanding context, present:
|
|
24
|
+
|
|
25
|
+
1. **Overdue tasks** from vault (`tasks/`)
|
|
26
|
+
2. **Due today** items
|
|
27
|
+
3. **Upcoming deadlines** (next 7 days)
|
|
28
|
+
4. **Recent meeting action items** not yet addressed
|
|
29
|
+
5. **Current focus** from `current-focus.md`
|
|
30
|
+
|
|
31
|
+
### Step 3: Help Prioritise
|
|
32
|
+
|
|
33
|
+
Based on the user's answers and the data:
|
|
34
|
+
|
|
35
|
+
1. Suggest a **realistic** number of tasks (usually 3-5)
|
|
36
|
+
2. Flag any **blocking** items (where others are waiting)
|
|
37
|
+
3. Consider the **project mix** - avoid all tasks from one project
|
|
38
|
+
4. Account for **transition costs** between different types of work
|
|
39
|
+
|
|
40
|
+
### Step 4: Create the Plan
|
|
41
|
+
|
|
42
|
+
Format the daily plan as:
|
|
43
|
+
|
|
44
|
+
```markdown
|
|
45
|
+
## Today's Focus: [Date]
|
|
46
|
+
|
|
47
|
+
### Must Do (non-negotiable)
|
|
48
|
+
1. [Task] - [Why it's a must]
|
|
49
|
+
|
|
50
|
+
### Should Do (important but flexible)
|
|
51
|
+
2. [Task]
|
|
52
|
+
3. [Task]
|
|
53
|
+
|
|
54
|
+
### Could Do (if time permits)
|
|
55
|
+
4. [Task]
|
|
56
|
+
|
|
57
|
+
### Parking Lot
|
|
58
|
+
- [Tasks explicitly deferred to another day]
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
## Example Interaction
|
|
62
|
+
|
|
63
|
+
**AI:** Good morning! Before we plan your day, a few quick questions:
|
|
64
|
+
- How's your energy today?
|
|
65
|
+
- Any meetings or fixed commitments?
|
|
66
|
+
- Where did you leave off yesterday?
|
|
67
|
+
|
|
68
|
+
**the user:** Tired. Meeting with [Supervisor] at 2pm. Was working on the journal revision.
|
|
69
|
+
|
|
70
|
+
**AI:** Got it. Given you're tired and have a meeting at 2pm, I'd suggest:
|
|
71
|
+
|
|
72
|
+
**Must Do:**
|
|
73
|
+
1. Prepare talking points for [Supervisor] meeting (30 min before)
|
|
74
|
+
|
|
75
|
+
**Should Do:**
|
|
76
|
+
2. Continue journal revision - Section 4 where you left off
|
|
77
|
+
3. Reply to [Supervisor]'s email about the project timeline
|
|
78
|
+
|
|
79
|
+
**Could Do:**
|
|
80
|
+
4. Review vault tasks for captured items
|
|
81
|
+
|
|
82
|
+
That leaves your morning for focused writing and gives you buffer before the meeting. Does this feel right?
|
|
83
|
+
|
|
84
|
+
---
|
|
85
|
+
|
|
86
|
+
## Integration Points
|
|
87
|
+
|
|
88
|
+
- **Vault:** Query `tasks/` for overdue/due items via taskflow MCP
|
|
89
|
+
- **Calendar:** Check for meetings (if connected)
|
|
90
|
+
- **Current Focus:** Read `.context/current-focus.md`
|
|
91
|
+
- **Meeting Notes:** Check recent `@[Date]` pages for unprocessed action items
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
# Meeting Action Item Extraction
|
|
2
|
+
|
|
3
|
+
> How to process the user's meeting transcripts and extract action items.
|
|
4
|
+
|
|
5
|
+
## Recording System: Minutes
|
|
6
|
+
|
|
7
|
+
**Tool:** [minutes](https://github.com/silverstein/minutes) — local-first meeting capture with whisper.cpp transcription, speaker diarization, and structured output.
|
|
8
|
+
|
|
9
|
+
**Output location:** `~/meetings/` (multi-speaker recordings), `~/meetings/memos/` (voice memos)
|
|
10
|
+
|
|
11
|
+
**Output format:** Markdown with YAML frontmatter containing:
|
|
12
|
+
- `title`, `date`, `duration`, `type` (meeting/memo)
|
|
13
|
+
- `attendees`, `speaker_map` (diarized speakers → real names)
|
|
14
|
+
- `action_items` (structured: assignee, task, due, status)
|
|
15
|
+
- `decisions` (structured: text, topic)
|
|
16
|
+
|
|
17
|
+
**Audio routing:** BlackHole 2ch virtual audio device for system audio (Zoom, Meet, Teams). Built-in mic for in-person.
|
|
18
|
+
|
|
19
|
+
## Meeting Lifecycle Skills
|
|
20
|
+
|
|
21
|
+
| Step | Skill | When |
|
|
22
|
+
|------|-------|------|
|
|
23
|
+
| Prepare | `/minutes prep` | Before a call — builds relationship brief from prior meetings |
|
|
24
|
+
| Record | `/minutes record` | During meeting — `minutes record` / `minutes stop` |
|
|
25
|
+
| Note | `/minutes note` | During meeting — add timestamped annotations |
|
|
26
|
+
| Debrief | `/minutes debrief` | After meeting — compare outcomes to prep, track decisions |
|
|
27
|
+
| Daily recap | `/minutes recap` | End of day — digest all meetings |
|
|
28
|
+
| Weekly | `/minutes weekly` | End of week — themes, decision arcs, stale commitments |
|
|
29
|
+
| Search | `/minutes search` | Anytime — find past discussions by topic, person, decision |
|
|
30
|
+
|
|
31
|
+
## Extraction Rules
|
|
32
|
+
|
|
33
|
+
### What Counts as an Action Item
|
|
34
|
+
|
|
35
|
+
Look for:
|
|
36
|
+
1. **Explicit commitments:** "I'll do X", "I'm going to...", "I need to..."
|
|
37
|
+
2. **Requests:** "Can you...", "Could you send...", "Please..."
|
|
38
|
+
3. **Agreed next steps:** "The next step is...", "We agreed to..."
|
|
39
|
+
4. **Deadlines mentioned:** "by Friday", "before the meeting", "by end of month"
|
|
40
|
+
|
|
41
|
+
### What to Capture (Full Context)
|
|
42
|
+
|
|
43
|
+
For each action item, extract:
|
|
44
|
+
|
|
45
|
+
| Field | Description | Example |
|
|
46
|
+
|-------|-------------|---------|
|
|
47
|
+
| **Task** | What needs to be done | "Send updated literature review" |
|
|
48
|
+
| **Assignee** | Who should do it (the user or someone else) | the user |
|
|
49
|
+
| **Deadline** | When it's due (if mentioned) | "by next Tuesday" |
|
|
50
|
+
| **Related Project** | Which project this relates to | Journal Revision |
|
|
51
|
+
| **Source Meeting** | Path to the transcript file | `~/meetings/2026-03-29-weekly-standup.md` |
|
|
52
|
+
| **Context** | Why this matters / what was discussed | "Reviewer 2 requested more references on cognitive load" |
|
|
53
|
+
|
|
54
|
+
### Output Format
|
|
55
|
+
|
|
56
|
+
Create tasks in the vault's `tasks/` directory as markdown files with YAML frontmatter:
|
|
57
|
+
|
|
58
|
+
```yaml
|
|
59
|
+
---
|
|
60
|
+
title: "[Action verb] [Object] - [Brief context]"
|
|
61
|
+
status: not-started
|
|
62
|
+
priority: [Infer from urgency/deadline]
|
|
63
|
+
due: YYYY-MM-DD
|
|
64
|
+
project: [project-slug]
|
|
65
|
+
tags: [meeting-action]
|
|
66
|
+
---
|
|
67
|
+
|
|
68
|
+
- **Context:** [Why this task exists]
|
|
69
|
+
- **From meeting:** [Date] with [Person]
|
|
70
|
+
- **Related to:** [Project]
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
## Processing Workflow
|
|
74
|
+
|
|
75
|
+
1. **Check for new transcripts** — `minutes list` or browse `~/meetings/`
|
|
76
|
+
2. **Run debrief** — `/minutes debrief` for structured analysis
|
|
77
|
+
3. **Extract action items** — from YAML frontmatter `action_items:` or transcript scan
|
|
78
|
+
4. **Create in vault** — add to `tasks/` directory with proper frontmatter
|
|
79
|
+
5. **Check for conflicts** — `/minutes debrief` flags decision conflicts with prior meetings
|
|
80
|
+
|
|
81
|
+
## Special Cases
|
|
82
|
+
|
|
83
|
+
### Supervisor Action Items
|
|
84
|
+
- Flag these as higher priority by default
|
|
85
|
+
- Tag with the relevant university (relevant institution)
|
|
86
|
+
|
|
87
|
+
### Research-Related Actions
|
|
88
|
+
- Link to the relevant paper project
|
|
89
|
+
- Consider impact on PhD timeline
|
|
90
|
+
|
|
91
|
+
### Administrative Actions
|
|
92
|
+
- Often have hard deadlines (forms, claims, bookings)
|
|
93
|
+
- Tag with "Claim" type if it's a reimbursement/refund
|
|
94
|
+
|
|
95
|
+
## Integration
|
|
96
|
+
|
|
97
|
+
- **Auto-extraction:** Minutes extracts `action_items` into YAML frontmatter (when LLM summarization is configured)
|
|
98
|
+
- **Manual extraction:** Run `/minutes debrief` or use `meeting-analyst` agent for cross-meeting synthesis
|
|
99
|
+
- **Vault sync:** Tasks are written directly to vault `tasks/` files
|
|
100
|
+
- **Triage:** During daily review, assign priorities and dates
|
|
101
|
+
|
|
102
|
+
## Cross-Meeting Intelligence
|
|
103
|
+
|
|
104
|
+
The `meeting-analyst` agent handles questions spanning multiple meetings:
|
|
105
|
+
- Person profiles: "What does X usually bring up?"
|
|
106
|
+
- Decision tracking: "What have we decided about pricing?"
|
|
107
|
+
- Stale commitments: "What's still outstanding?"
|
|
108
|
+
- Preparation: "Prepare me for my call with the Acme team"
|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
# Replication Protocol
|
|
2
|
+
|
|
3
|
+
> Step-by-step process for replicating results from a published paper before extending.
|
|
4
|
+
|
|
5
|
+
## When to Use
|
|
6
|
+
|
|
7
|
+
- Replicating a paper's empirical results as a foundation for your own work
|
|
8
|
+
- Verifying a coauthor's code produces the claimed results
|
|
9
|
+
- R&R where a referee asks you to demonstrate you can replicate a benchmark
|
|
10
|
+
|
|
11
|
+
## Principles
|
|
12
|
+
|
|
13
|
+
1. **Replicate first, extend later** — never "improve" during replication
|
|
14
|
+
2. **Line-by-line translation** — match the original code's logic exactly
|
|
15
|
+
3. **Programmatic comparison** — no eyeballing; use tolerances
|
|
16
|
+
4. **Document everything** — every discrepancy gets recorded
|
|
17
|
+
|
|
18
|
+
## Phase 1: Inventory Gold Standard Numbers
|
|
19
|
+
|
|
20
|
+
Before writing any code:
|
|
21
|
+
|
|
22
|
+
1. Open the original paper
|
|
23
|
+
2. Extract **every** numerical result you plan to replicate:
|
|
24
|
+
- Point estimates (coefficients, means, treatment effects)
|
|
25
|
+
- Standard errors / confidence intervals
|
|
26
|
+
- Sample sizes (N)
|
|
27
|
+
- Test statistics (t-stats, F-stats, p-values)
|
|
28
|
+
- Summary statistics from descriptive tables
|
|
29
|
+
3. Record them in `replication-targets.md`:
|
|
30
|
+
|
|
31
|
+
```markdown
|
|
32
|
+
# Replication Targets
|
|
33
|
+
|
|
34
|
+
Source: [Author (Year), "Title"]
|
|
35
|
+
|
|
36
|
+
## Table 1: Summary Statistics
|
|
37
|
+
| Variable | Paper Value | Our Value | Match? |
|
|
38
|
+
|----------|-------------|-----------|--------|
|
|
39
|
+
| Mean income | 45,230 | | |
|
|
40
|
+
| N | 12,500 | | |
|
|
41
|
+
|
|
42
|
+
## Table 2: Main Results
|
|
43
|
+
| Specification | Estimate | SE | Our Estimate | Our SE | Match? |
|
|
44
|
+
|--------------|----------|-----|-------------|--------|--------|
|
|
45
|
+
| OLS baseline | 0.034 | 0.012 | | | |
|
|
46
|
+
| IV | 0.051 | 0.018 | | | |
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## Phase 2: Line-by-Line Translation
|
|
50
|
+
|
|
51
|
+
1. Obtain the original code (replication package, GitHub, or request from authors)
|
|
52
|
+
2. Translate to your language (R or Python) **without modifying the logic**:
|
|
53
|
+
- Same variable names where possible
|
|
54
|
+
- Same sample restrictions
|
|
55
|
+
- Same model specifications
|
|
56
|
+
- Same standard error clustering
|
|
57
|
+
3. Comment each block referencing the original code line numbers
|
|
58
|
+
|
|
59
|
+
**Do NOT:**
|
|
60
|
+
- Fix "bugs" in the original code
|
|
61
|
+
- Use "better" estimators
|
|
62
|
+
- Add robustness checks
|
|
63
|
+
- Clean the code style
|
|
64
|
+
|
|
65
|
+
## Phase 3: Programmatic Comparison
|
|
66
|
+
|
|
67
|
+
Compare your results against Phase 1 targets using these tolerances:
|
|
68
|
+
|
|
69
|
+
| Metric | Tolerance | Rationale |
|
|
70
|
+
|--------|-----------|-----------|
|
|
71
|
+
| Integers (N, counts) | Exact match | No reason for any difference |
|
|
72
|
+
| Point estimates | < 0.01 | Numerical precision differences |
|
|
73
|
+
| Standard errors | < 0.05 | Clustering/bootstrap can vary slightly |
|
|
74
|
+
| p-values | < 0.01 | Derived from above |
|
|
75
|
+
| R-squared | < 0.001 | Numerical precision |
|
|
76
|
+
|
|
77
|
+
Generate a comparison programmatically:
|
|
78
|
+
|
|
79
|
+
```r
|
|
80
|
+
# R example
|
|
81
|
+
compare_results <- function(paper_value, our_value, tolerance) {
|
|
82
|
+
diff <- abs(paper_value - our_value)
|
|
83
|
+
list(
|
|
84
|
+
paper = paper_value,
|
|
85
|
+
ours = our_value,
|
|
86
|
+
diff = diff,
|
|
87
|
+
match = diff <= tolerance
|
|
88
|
+
)
|
|
89
|
+
}
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
```python
|
|
93
|
+
# Python example
|
|
94
|
+
def compare_results(paper_value, our_value, tolerance):
|
|
95
|
+
diff = abs(paper_value - our_value)
|
|
96
|
+
return {
|
|
97
|
+
"paper": paper_value,
|
|
98
|
+
"ours": our_value,
|
|
99
|
+
"diff": diff,
|
|
100
|
+
"match": diff <= tolerance
|
|
101
|
+
}
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
## Phase 4: Extend
|
|
105
|
+
|
|
106
|
+
Only after Phase 3 produces a clean replication report:
|
|
107
|
+
|
|
108
|
+
1. Create a **separate script** for extensions (never modify replication code)
|
|
109
|
+
2. Document what you're changing and why
|
|
110
|
+
3. Compare extended results against replication baseline
|
|
111
|
+
|
|
112
|
+
## Output Files
|
|
113
|
+
|
|
114
|
+
At the end of a replication, the project directory should contain:
|
|
115
|
+
|
|
116
|
+
```
|
|
117
|
+
project/
|
|
118
|
+
├── replication-targets.md ← Phase 1: gold standard numbers
|
|
119
|
+
├── replication-report.md ← Phase 3: comparison results
|
|
120
|
+
├── code/
|
|
121
|
+
│ ├── 01-replicate.R ← Phase 2: line-by-line translation
|
|
122
|
+
│ └── 02-extend.R ← Phase 4: your extensions
|
|
123
|
+
└── data/
|
|
124
|
+
└── ...
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
### Replication Report Format
|
|
128
|
+
|
|
129
|
+
```markdown
|
|
130
|
+
# Replication Report
|
|
131
|
+
|
|
132
|
+
**Paper:** [Author (Year), "Title"]
|
|
133
|
+
**Date:** YYYY-MM-DD
|
|
134
|
+
**Replicated by:** the user
|
|
135
|
+
|
|
136
|
+
## Summary
|
|
137
|
+
- Tables replicated: X/Y
|
|
138
|
+
- Figures replicated: X/Y
|
|
139
|
+
- Overall: PASS / PARTIAL / FAIL
|
|
140
|
+
|
|
141
|
+
## Detailed Results
|
|
142
|
+
[Table-by-table comparison with match status]
|
|
143
|
+
|
|
144
|
+
## Discrepancies
|
|
145
|
+
[Any values outside tolerance, with investigation notes]
|
|
146
|
+
|
|
147
|
+
## Notes
|
|
148
|
+
[Software versions, data access issues, ambiguities in original code]
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
## Cross-References
|
|
152
|
+
|
|
153
|
+
- **`/code-review`** — Run on replication scripts before finalising
|
|
154
|
+
- **Referee 2 agent** — For formal verification of the full replication
|
|
155
|
+
- **`/code-archaeology`** — If the original replication package needs understanding first
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
# Weekly Review Workflow
|
|
2
|
+
|
|
3
|
+
> Template for the user's weekly reflection and planning.
|
|
4
|
+
|
|
5
|
+
## When
|
|
6
|
+
|
|
7
|
+
Ideally: Friday afternoon or Sunday evening
|
|
8
|
+
Duration: 30-45 minutes
|
|
9
|
+
|
|
10
|
+
## The Review Process
|
|
11
|
+
|
|
12
|
+
### Part 1: Clear the Decks (10 min)
|
|
13
|
+
|
|
14
|
+
- [ ] Process inbox (vault tasks with no due date)
|
|
15
|
+
- [ ] Review all "Waiting" status tasks - still waiting?
|
|
16
|
+
- [ ] Check for any loose paper notes, email drafts, or mental open loops
|
|
17
|
+
- [ ] Update `current-focus.md` with where things stand
|
|
18
|
+
|
|
19
|
+
### Part 2: Review the Week (10 min)
|
|
20
|
+
|
|
21
|
+
Reflect on:
|
|
22
|
+
|
|
23
|
+
1. **What got done?**
|
|
24
|
+
- List completed tasks (check vault tasks with "Done" status)
|
|
25
|
+
- Note any significant progress on papers/projects
|
|
26
|
+
- Acknowledge wins, even small ones
|
|
27
|
+
|
|
28
|
+
2. **What didn't happen?**
|
|
29
|
+
- Tasks that rolled over multiple times - why?
|
|
30
|
+
- Commitments made but not kept
|
|
31
|
+
- Is there a pattern?
|
|
32
|
+
|
|
33
|
+
3. **What emerged?**
|
|
34
|
+
- New projects or opportunities
|
|
35
|
+
- Unexpected challenges
|
|
36
|
+
- Ideas worth capturing
|
|
37
|
+
|
|
38
|
+
### Part 3: Plan Next Week (15 min)
|
|
39
|
+
|
|
40
|
+
1. **Review calendar**
|
|
41
|
+
- What meetings are scheduled?
|
|
42
|
+
- Any deadlines?
|
|
43
|
+
- Travel or unusual commitments?
|
|
44
|
+
|
|
45
|
+
2. **Identify the BIG 3**
|
|
46
|
+
- What are the three most important outcomes for next week?
|
|
47
|
+
- These should move meaningful projects forward
|
|
48
|
+
- Be realistic given the calendar
|
|
49
|
+
|
|
50
|
+
3. **Prep for Monday**
|
|
51
|
+
- What's the first task you'll do?
|
|
52
|
+
- Any prep needed before a Monday meeting?
|
|
53
|
+
|
|
54
|
+
### Part 4: Projects Check (10 min)
|
|
55
|
+
|
|
56
|
+
For each active project (see `projects/_index.md`):
|
|
57
|
+
|
|
58
|
+
- What's the current status?
|
|
59
|
+
- What's the next action?
|
|
60
|
+
- Any blockers?
|
|
61
|
+
- Timeline still realistic?
|
|
62
|
+
|
|
63
|
+
## Weekly Review Template
|
|
64
|
+
|
|
65
|
+
```markdown
|
|
66
|
+
# Week of [DATE]
|
|
67
|
+
|
|
68
|
+
## Wins
|
|
69
|
+
-
|
|
70
|
+
|
|
71
|
+
## Challenges
|
|
72
|
+
-
|
|
73
|
+
|
|
74
|
+
## Key Learnings
|
|
75
|
+
-
|
|
76
|
+
|
|
77
|
+
## Next Week: Big 3
|
|
78
|
+
1.
|
|
79
|
+
2.
|
|
80
|
+
3.
|
|
81
|
+
|
|
82
|
+
## Project Status Updates
|
|
83
|
+
| Project | Status | Next Action |
|
|
84
|
+
|---------|--------|-------------|
|
|
85
|
+
| | | |
|
|
86
|
+
|
|
87
|
+
## Open Questions
|
|
88
|
+
-
|
|
89
|
+
|
|
90
|
+
## Notes for Future Self
|
|
91
|
+
-
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
## AI Assistance
|
|
95
|
+
|
|
96
|
+
When helping with weekly review, AI should:
|
|
97
|
+
|
|
98
|
+
1. **Pull data from vault**
|
|
99
|
+
- Completed tasks this week
|
|
100
|
+
- Overdue tasks
|
|
101
|
+
- Tasks created this week
|
|
102
|
+
|
|
103
|
+
2. **Prompt reflection**
|
|
104
|
+
- "I see you completed X, Y, Z. What felt good about this week?"
|
|
105
|
+
- "These tasks rolled over - want to reschedule or remove them?"
|
|
106
|
+
|
|
107
|
+
3. **Help with planning**
|
|
108
|
+
- "Based on your current projects, here are candidates for Big 3..."
|
|
109
|
+
- "You have [N] meetings next week - factor this into planning"
|
|
110
|
+
|
|
111
|
+
4. **Update context files**
|
|
112
|
+
- Offer to update `current-focus.md` based on the review
|
|
113
|
+
- Flag any stale information in project files
|