Structural cleanup: reorganize loose notes + add dashboards
- Move SSH Servers, Deploy to Server, bitbacket ssh setup, setup redirect url → 03 Resources/Infrastructure/ - Move Claude code.md, how to.md, how to_en.md → 03 Resources/SOPs/ - Move Заметки по работе с терминалом.md → 03 Resources/SOPs/ - Move linux_docker_apache_vim_cheatsheet.html, Pasted image → 03 Resources/ - Delete empty Untitled.canvas and Untitled.base - Create 02 Areas/Work Tasks.md (Dataview task dashboard) - Create 03 Resources/Infrastructure Index.md (hub note) - Update Projects Index.md infrastructure links Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
de3aad07b8
commit
bd85cacf17
26 changed files with 112 additions and 7 deletions
1
.claude/skills/defuddle
Symbolic link
1
.claude/skills/defuddle
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../.agents/skills/defuddle
|
||||
1
.claude/skills/json-canvas
Symbolic link
1
.claude/skills/json-canvas
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../.agents/skills/json-canvas
|
||||
1
.claude/skills/obsidian-bases
Symbolic link
1
.claude/skills/obsidian-bases
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../.agents/skills/obsidian-bases
|
||||
1
.claude/skills/obsidian-cli
Symbolic link
1
.claude/skills/obsidian-cli
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../.agents/skills/obsidian-cli
|
||||
1
.claude/skills/obsidian-markdown
Symbolic link
1
.claude/skills/obsidian-markdown
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../.agents/skills/obsidian-markdown
|
||||
1
.qwen/skills/defuddle
Symbolic link
1
.qwen/skills/defuddle
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../.agents/skills/defuddle
|
||||
1
.qwen/skills/json-canvas
Symbolic link
1
.qwen/skills/json-canvas
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../.agents/skills/json-canvas
|
||||
1
.qwen/skills/obsidian-bases
Symbolic link
1
.qwen/skills/obsidian-bases
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../.agents/skills/obsidian-bases
|
||||
1
.qwen/skills/obsidian-cli
Symbolic link
1
.qwen/skills/obsidian-cli
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../.agents/skills/obsidian-cli
|
||||
1
.qwen/skills/obsidian-markdown
Symbolic link
1
.qwen/skills/obsidian-markdown
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../.agents/skills/obsidian-markdown
|
||||
|
|
@ -54,10 +54,10 @@ tags: [index, oliver, projects]
|
|||
| [[smartcrop26/SmartCrop26]] | React + TS + Lovable | npm | — |
|
||||
| [[video-accessibility/Video Accessibility Platform]] | FastAPI + Gemini + Docker | docker compose | — |
|
||||
|
||||
## Infrastructure Notes
|
||||
- [[bitbacket ssh setup]] — Bitbucket SSH config
|
||||
- [[Deploy to Server]] — General deployment guide
|
||||
## Infrastructure & Resources
|
||||
- [[Infrastructure Index]] — Full infrastructure hub (servers, deployment, SOPs)
|
||||
- [[SSH Servers]] — Server access credentials
|
||||
- [[Deploy to Server]] — General deployment guide
|
||||
|
||||
## Daily Logs
|
||||
See `99 Daily/` for session-by-session logs.
|
||||
|
|
|
|||
39
02 Areas/Work Tasks.md
Normal file
39
02 Areas/Work Tasks.md
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
---
|
||||
name: "Work Tasks"
|
||||
type: dashboard
|
||||
tags: [tasks, work, dashboard]
|
||||
updated: 2026-04-14
|
||||
---
|
||||
|
||||
# Work Tasks
|
||||
|
||||
> Live task board — pulled from all project notes via Dataview.
|
||||
|
||||
## Open Tasks (All Projects)
|
||||
|
||||
```dataview
|
||||
TASK
|
||||
FROM "01 Projects"
|
||||
WHERE !completed
|
||||
SORT file.mtime DESC
|
||||
```
|
||||
|
||||
## By Project
|
||||
|
||||
```dataview
|
||||
TASK
|
||||
FROM "01 Projects"
|
||||
WHERE !completed
|
||||
GROUP BY file.folder
|
||||
```
|
||||
|
||||
## Completed (Last 7 Days)
|
||||
|
||||
```dataview
|
||||
TASK
|
||||
FROM "01 Projects"
|
||||
WHERE completed
|
||||
WHERE completion >= date(today) - dur(7 days)
|
||||
SORT completion DESC
|
||||
LIMIT 20
|
||||
```
|
||||
30
03 Resources/Infrastructure Index.md
Normal file
30
03 Resources/Infrastructure Index.md
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
---
|
||||
name: "Infrastructure Index"
|
||||
type: hub
|
||||
tags: [index, infrastructure, servers, devops]
|
||||
updated: 2026-04-14
|
||||
---
|
||||
|
||||
# Infrastructure
|
||||
|
||||
> Reference hub for servers, deployment, and dev tooling.
|
||||
|
||||
## Server Access
|
||||
- [[SSH Servers]] — all server IPs, ports, SSH keys, users
|
||||
|
||||
## Deployment
|
||||
- [[Deploy to Server]] — general deployment guide (Docker, nginx, GCP)
|
||||
- [[for script]] — deploy script template with Azure SSO config
|
||||
|
||||
## Version Control
|
||||
- [[bitbacket ssh setup]] — Bitbucket SSH key configuration
|
||||
- [[setup redirect url]] — Azure AD redirect URL request process
|
||||
|
||||
## Cheatsheets & Notes
|
||||
- [[Заметки по работе с терминалом]] — terminal commands cheatsheet
|
||||
- [Linux/Docker/Apache/Vim Cheatsheet](Infrastructure/linux_docker_apache_vim_cheatsheet.html)
|
||||
|
||||
## SOPs
|
||||
- [[Claude code]] — SOP for Claude Code development workflow
|
||||
- [[how to]] — Claude Code SOP (Russian)
|
||||
- [[how to_en]] — Claude Code SOP (English)
|
||||
|
Before Width: | Height: | Size: 153 KiB After Width: | Height: | Size: 153 KiB |
|
|
@ -1,3 +0,0 @@
|
|||
views:
|
||||
- type: table
|
||||
name: Table
|
||||
|
|
@ -1 +0,0 @@
|
|||
{}
|
||||
30
skills-lock.json
Normal file
30
skills-lock.json
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"version": 1,
|
||||
"skills": {
|
||||
"defuddle": {
|
||||
"source": "git@github.com:kepano/obsidian-skills.git",
|
||||
"sourceType": "git",
|
||||
"computedHash": "0ed68bc3e818ba0e6b8d192357ea3daaf552a3893f8854e7fd43c06831f91323"
|
||||
},
|
||||
"json-canvas": {
|
||||
"source": "git@github.com:kepano/obsidian-skills.git",
|
||||
"sourceType": "git",
|
||||
"computedHash": "56cbac74a93e4fba97f4d44bccfdeaae89e545b223f47df392c7705e01e6c543"
|
||||
},
|
||||
"obsidian-bases": {
|
||||
"source": "git@github.com:kepano/obsidian-skills.git",
|
||||
"sourceType": "git",
|
||||
"computedHash": "ed0a53502693e56c67575a9958daca9a3a1ac7ba483367f400b4cad9488bfb3c"
|
||||
},
|
||||
"obsidian-cli": {
|
||||
"source": "git@github.com:kepano/obsidian-skills.git",
|
||||
"sourceType": "git",
|
||||
"computedHash": "f46ae626875f7e47c410c2ee93896c4526024ebe127719e8fb430261b5677edc"
|
||||
},
|
||||
"obsidian-markdown": {
|
||||
"source": "git@github.com:kepano/obsidian-skills.git",
|
||||
"sourceType": "git",
|
||||
"computedHash": "cacc9058a35ad3fd4985b4c31121bff8202f1337c39808c1326ded6a19a7915f"
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue