├── .adr.json ├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── articles ├── 10-tip-good-tl.md ├── 11-responsibilities-10-mistakes.md ├── 12-tips-be-tl.md ├── 4-things-when-becoming-tech-lead.md ├── 5-signs-be-tech-lead.md ├── README.md ├── being-tech-lead-lesson.md ├── decisions.md ├── dont-need-tech-lead.md ├── effective-tech-lead-in-agile.md ├── five-advice-for-new-tech-leads.md ├── good-tech-lead-bad-tech-lead.md ├── great-culture.md ├── howto-build-thrived-culture.md ├── images │ ├── kanban.png │ ├── ptop.png │ ├── qa_gates.jpg │ ├── ttl-core.png │ └── weekly-vitals-example-report.png ├── keep-culture-while-scaling.md ├── lead-programmer-reponsiblities.md ├── make-great-tech-lead.md ├── path-to-production.md ├── project-lifecycle-tl.md ├── software-architecture.md ├── tech-lead-4-challenges.md ├── tech-lead-8-qualities.md ├── tech-lead-analyzing-requirements.md ├── tech-lead-architecture-triangle.md ├── tech-lead-balancing-coaching-with-coding.md ├── tech-lead-do.md ├── tech-lead-good-for.md ├── tech-lead-main-skills.md ├── tech-lead-new-project-checklists.md ├── tech-lead-or-tech-lead.md ├── tech-lead-role-responsibilities.md ├── tech-lead-survival-guide.md ├── to-be-great-tl.md ├── what-make-a-good-tech-lead.md └── what-tech-lead-do.md ├── assets ├── adr.png ├── architecture-process.jpg ├── c4-model.jpg ├── c4model-layer.png ├── cone-of-uncertainty-for-powerpoint.jpg ├── flow.png ├── influence.gif ├── influencing-approaches.png ├── leader-vs-boss.jpg ├── limit-of-authority.png ├── motivators.jpg ├── new-project-checklist.jpg ├── path-to-production.png ├── situational-leadership-model.png ├── skill_wheels.png ├── skilltree.png ├── stakeholder-mapping.jpg ├── states-of-group.png ├── sweet-spot.png ├── tech-action-project.png ├── tech-action-project.sketch ├── tech-action-project.svg ├── tech-debt-wall.png ├── tech-lead-butterfly.png ├── tech-lead-circles.png ├── techstack.jpg ├── tki-stratery.jpg ├── tki.jpg ├── tla.png └── tw-radar-platforms.png ├── defined.md ├── desktop └── src │ └── index.ts ├── docs ├── README.md ├── adr │ ├── 0001-desktop-工具.md │ ├── 0002-模块功能插件化.md │ └── README.md ├── architecture │ └── README.md ├── bmc │ ├── canvas.html │ ├── canvas_template.html │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ └── canvas.css │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ ├── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── canvas.js │ │ └── jquery.min.js │ └── startup.html └── mvp │ ├── README.md │ └── model.md ├── evaluate └── README.md ├── faq └── README.md ├── model ├── README.md ├── agile-practise.md ├── personal-effectiveness.md ├── tl-model.md ├── tw-model.md └── value.md └── package.json /.adr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/.adr.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | remote_theme: phodal/mifa-jekyll 2 | 3 | -------------------------------------------------------------------------------- /articles/10-tip-good-tl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/10-tip-good-tl.md -------------------------------------------------------------------------------- /articles/11-responsibilities-10-mistakes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/11-responsibilities-10-mistakes.md -------------------------------------------------------------------------------- /articles/12-tips-be-tl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/12-tips-be-tl.md -------------------------------------------------------------------------------- /articles/4-things-when-becoming-tech-lead.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/4-things-when-becoming-tech-lead.md -------------------------------------------------------------------------------- /articles/5-signs-be-tech-lead.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/5-signs-be-tech-lead.md -------------------------------------------------------------------------------- /articles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/README.md -------------------------------------------------------------------------------- /articles/being-tech-lead-lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/being-tech-lead-lesson.md -------------------------------------------------------------------------------- /articles/decisions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/decisions.md -------------------------------------------------------------------------------- /articles/dont-need-tech-lead.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/dont-need-tech-lead.md -------------------------------------------------------------------------------- /articles/effective-tech-lead-in-agile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/effective-tech-lead-in-agile.md -------------------------------------------------------------------------------- /articles/five-advice-for-new-tech-leads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/five-advice-for-new-tech-leads.md -------------------------------------------------------------------------------- /articles/good-tech-lead-bad-tech-lead.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/good-tech-lead-bad-tech-lead.md -------------------------------------------------------------------------------- /articles/great-culture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/great-culture.md -------------------------------------------------------------------------------- /articles/howto-build-thrived-culture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/howto-build-thrived-culture.md -------------------------------------------------------------------------------- /articles/images/kanban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/images/kanban.png -------------------------------------------------------------------------------- /articles/images/ptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/images/ptop.png -------------------------------------------------------------------------------- /articles/images/qa_gates.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/images/qa_gates.jpg -------------------------------------------------------------------------------- /articles/images/ttl-core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/images/ttl-core.png -------------------------------------------------------------------------------- /articles/images/weekly-vitals-example-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/images/weekly-vitals-example-report.png -------------------------------------------------------------------------------- /articles/keep-culture-while-scaling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/keep-culture-while-scaling.md -------------------------------------------------------------------------------- /articles/lead-programmer-reponsiblities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/lead-programmer-reponsiblities.md -------------------------------------------------------------------------------- /articles/make-great-tech-lead.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/make-great-tech-lead.md -------------------------------------------------------------------------------- /articles/path-to-production.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/path-to-production.md -------------------------------------------------------------------------------- /articles/project-lifecycle-tl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/project-lifecycle-tl.md -------------------------------------------------------------------------------- /articles/software-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/software-architecture.md -------------------------------------------------------------------------------- /articles/tech-lead-4-challenges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/tech-lead-4-challenges.md -------------------------------------------------------------------------------- /articles/tech-lead-8-qualities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/tech-lead-8-qualities.md -------------------------------------------------------------------------------- /articles/tech-lead-analyzing-requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/tech-lead-analyzing-requirements.md -------------------------------------------------------------------------------- /articles/tech-lead-architecture-triangle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/tech-lead-architecture-triangle.md -------------------------------------------------------------------------------- /articles/tech-lead-balancing-coaching-with-coding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/tech-lead-balancing-coaching-with-coding.md -------------------------------------------------------------------------------- /articles/tech-lead-do.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/tech-lead-do.md -------------------------------------------------------------------------------- /articles/tech-lead-good-for.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/tech-lead-good-for.md -------------------------------------------------------------------------------- /articles/tech-lead-main-skills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/tech-lead-main-skills.md -------------------------------------------------------------------------------- /articles/tech-lead-new-project-checklists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/tech-lead-new-project-checklists.md -------------------------------------------------------------------------------- /articles/tech-lead-or-tech-lead.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/tech-lead-or-tech-lead.md -------------------------------------------------------------------------------- /articles/tech-lead-role-responsibilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/tech-lead-role-responsibilities.md -------------------------------------------------------------------------------- /articles/tech-lead-survival-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/tech-lead-survival-guide.md -------------------------------------------------------------------------------- /articles/to-be-great-tl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/to-be-great-tl.md -------------------------------------------------------------------------------- /articles/what-make-a-good-tech-lead.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/what-make-a-good-tech-lead.md -------------------------------------------------------------------------------- /articles/what-tech-lead-do.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/articles/what-tech-lead-do.md -------------------------------------------------------------------------------- /assets/adr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/adr.png -------------------------------------------------------------------------------- /assets/architecture-process.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/architecture-process.jpg -------------------------------------------------------------------------------- /assets/c4-model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/c4-model.jpg -------------------------------------------------------------------------------- /assets/c4model-layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/c4model-layer.png -------------------------------------------------------------------------------- /assets/cone-of-uncertainty-for-powerpoint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/cone-of-uncertainty-for-powerpoint.jpg -------------------------------------------------------------------------------- /assets/flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/flow.png -------------------------------------------------------------------------------- /assets/influence.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/influence.gif -------------------------------------------------------------------------------- /assets/influencing-approaches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/influencing-approaches.png -------------------------------------------------------------------------------- /assets/leader-vs-boss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/leader-vs-boss.jpg -------------------------------------------------------------------------------- /assets/limit-of-authority.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/limit-of-authority.png -------------------------------------------------------------------------------- /assets/motivators.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/motivators.jpg -------------------------------------------------------------------------------- /assets/new-project-checklist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/new-project-checklist.jpg -------------------------------------------------------------------------------- /assets/path-to-production.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/path-to-production.png -------------------------------------------------------------------------------- /assets/situational-leadership-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/situational-leadership-model.png -------------------------------------------------------------------------------- /assets/skill_wheels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/skill_wheels.png -------------------------------------------------------------------------------- /assets/skilltree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/skilltree.png -------------------------------------------------------------------------------- /assets/stakeholder-mapping.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/stakeholder-mapping.jpg -------------------------------------------------------------------------------- /assets/states-of-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/states-of-group.png -------------------------------------------------------------------------------- /assets/sweet-spot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/sweet-spot.png -------------------------------------------------------------------------------- /assets/tech-action-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/tech-action-project.png -------------------------------------------------------------------------------- /assets/tech-action-project.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/tech-action-project.sketch -------------------------------------------------------------------------------- /assets/tech-action-project.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/tech-action-project.svg -------------------------------------------------------------------------------- /assets/tech-debt-wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/tech-debt-wall.png -------------------------------------------------------------------------------- /assets/tech-lead-butterfly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/tech-lead-butterfly.png -------------------------------------------------------------------------------- /assets/tech-lead-circles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/tech-lead-circles.png -------------------------------------------------------------------------------- /assets/techstack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/techstack.jpg -------------------------------------------------------------------------------- /assets/tki-stratery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/tki-stratery.jpg -------------------------------------------------------------------------------- /assets/tki.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/tki.jpg -------------------------------------------------------------------------------- /assets/tla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/tla.png -------------------------------------------------------------------------------- /assets/tw-radar-platforms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/assets/tw-radar-platforms.png -------------------------------------------------------------------------------- /defined.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/defined.md -------------------------------------------------------------------------------- /desktop/src/index.ts: -------------------------------------------------------------------------------- 1 | console.log('hello, IDE'); 2 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/adr/0001-desktop-工具.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/docs/adr/0001-desktop-工具.md -------------------------------------------------------------------------------- /docs/adr/0002-模块功能插件化.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/docs/adr/0002-模块功能插件化.md -------------------------------------------------------------------------------- /docs/adr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/docs/adr/README.md -------------------------------------------------------------------------------- /docs/architecture/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/bmc/canvas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/docs/bmc/canvas.html -------------------------------------------------------------------------------- /docs/bmc/canvas_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/docs/bmc/canvas_template.html -------------------------------------------------------------------------------- /docs/bmc/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/docs/bmc/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /docs/bmc/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/docs/bmc/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /docs/bmc/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/docs/bmc/css/bootstrap.css -------------------------------------------------------------------------------- /docs/bmc/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/docs/bmc/css/bootstrap.min.css -------------------------------------------------------------------------------- /docs/bmc/css/canvas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/docs/bmc/css/canvas.css -------------------------------------------------------------------------------- /docs/bmc/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/docs/bmc/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /docs/bmc/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/docs/bmc/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /docs/bmc/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/docs/bmc/js/bootstrap.js -------------------------------------------------------------------------------- /docs/bmc/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/docs/bmc/js/bootstrap.min.js -------------------------------------------------------------------------------- /docs/bmc/js/canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/docs/bmc/js/canvas.js -------------------------------------------------------------------------------- /docs/bmc/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/docs/bmc/js/jquery.min.js -------------------------------------------------------------------------------- /docs/bmc/startup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/docs/bmc/startup.html -------------------------------------------------------------------------------- /docs/mvp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/docs/mvp/README.md -------------------------------------------------------------------------------- /docs/mvp/model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/docs/mvp/model.md -------------------------------------------------------------------------------- /evaluate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/evaluate/README.md -------------------------------------------------------------------------------- /faq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/faq/README.md -------------------------------------------------------------------------------- /model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/model/README.md -------------------------------------------------------------------------------- /model/agile-practise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/model/agile-practise.md -------------------------------------------------------------------------------- /model/personal-effectiveness.md: -------------------------------------------------------------------------------- 1 | # Personal effectiveness 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /model/tl-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/model/tl-model.md -------------------------------------------------------------------------------- /model/tw-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/model/tw-model.md -------------------------------------------------------------------------------- /model/value.md: -------------------------------------------------------------------------------- 1 | # Tech Lead 价值观 2 | 3 | 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/techlead/HEAD/package.json --------------------------------------------------------------------------------